AD
Administrator
Syncfusion Team
September 8, 2003 02:22 PM UTC
Currently, there is no support in GridControl for filtering.
So, if you need to support filtering, you would have to design and implement some way to do it.
One way you could do this is to maintain an arraylist of visible row indexes. Then handle the QueryCellInfo event and QueryRowCount event. Use QueryRowCount to provide the arraylist.Count as the number of rows in the grid. Then in QueryCellInfo use the arraylist to get the proper visible row. The VirtTreeGrid sample uses sort of this technique to dynamically display differing numbers of rows. It would take some coding, but I think it is doable.