views:

136

answers:

1

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?

A: 

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 ; )

SDReyes