Reputation: 9954
In previous versions of DynamicData you could override GetFilteredColumns
method from FilterRepeater
to manage which columns are used to generate filters.
But now FilterRepeater
is obsolete, and his successor QueryableFilterRepeater
don't have such method.
There is any way to override the columns used for filtering with QueryableFilterRepeater?
Upvotes: 1
Views: 987
Reputation: 9954
After asking Stephen Naughton for help (Thank you Stephen!). He told me there isn't a way to extend QueryableFilterRepeater
for this purposes yet.
Anyway you could still using the AutoGenerateFilter
property of the 'DisplayAttribute' to hide columns filters ; )
Upvotes: 3