Posted on: 2/5/2014 1:44:26 PM | Views : 292

Hey,
Let's say you have multiple table views, each using a different SQL select statement for it's columns. Obviously each table view will have it's own RowFilter object.
Now let's say you have multiple repeaters, which have a 1:1 mapping to a table view, and you want to apply a RowFilter to each of them based on the value of a textbox, onlythe  search value contains column names, and some columns don't appear in the table view.
What can I do to do this?
Example:
'the value is put into a string, which is used as the value for rowfilter string value = "category: xxx, name: yyy, description: zzz"; Table1_View.RowFilter = value.ToString(); Table2_View.RowFilter = value.ToString(); Except that the category column in only in table1_view, and the name and description columns are only in the table2_view, so I obviously get errors about the views not containing the columns specificed.
My i ...

Go to the complete details ...