Cascading filtering with DataView

  • Thread starter Thread starter Webgour
  • Start date Start date
W

Webgour

I'm tring to filter a dataview with multiple rowfilters. The problem is that
each time I use RowFilter on the DataView i'm quering the full dataview as
it was loaded, not the filtered version. Is there any way to get the
Dataview to keep track of the different RowFilter used?
 
DataView.RowFilter is only one, but you can give how many condition do you
want in it:
RowFilter="(firstname LIKE '%jonh%' AND lastname LIKE '%smith%') OR age<25";

If you want to have differents filters just use differents DataView with
differents RowFilter

I'm not sure, but I think you can't do a DateView of a DataView, only of a
Table
 
Back
Top