GridControl with some virtual cells

I am using a normal GridControl and data for one of the columns(non sortable) in not readily available. I have to do some extra processing for this column to prepare the data to be displayed. My GridControl normally houses about 1000 rows out of which only about 10 are displayed at one time. I do not want to make the entire thing as a virtual grid to keep the sorting simple. Is there a way that I can keep using the GridControl and make the mentioned column virtual so that I do the processing for only the 10 displayed rows ?

2 Replies

AD Administrator Syncfusion Team September 6, 2005 09:02 PM UTC

You can handle the QueryCellInfo event, and only set e.Style.CellValue when e.RowIndex > 0 and e.ColIndex points to the column that you want to be virtual.


DD Debasish Das September 7, 2005 03:17 PM UTC

Thanks!

Loader.
Up arrow icon