AD
Administrator
Syncfusion Team
June 23, 2005 04:26 PM UTC
If you are handling QueryColCount and QueryRowCount, the grid will use whatever values you set in e.Size.
So, when you want an empty grid, set a flag. In QueryColCount and QueryRowCount, when your flag is set, return the values you want to see. Also, in QueryCellInfo, if the flag is set, skip the normal code that you use there to access your data. Also, in SaveCellInfo, if the flag is set, just set e.Handled = true and return.
So, then you can make the grid show empty, by setting your flag, and calling grid.Refresh.