SDReyes
SDReyes

Reputation: 9954

How to extend QueryableFilterRepeater to override the filters shown?

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

Answers (1)

SDReyes
SDReyes

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

Related Questions