Is it possible to remove a row (don't include it in the grid) based on code executed in the InitializeRow method? Or, does the row need to be filtered out of the dataset before the DataBind occurs?
I'd like to do everything server side if possible.
The grid by design is a bound control and it is better to filter the rows out before binding the grid.
I would like to know if row deletion is still not possible except the filter way which prevents the data.
I need to delete the row based on condition in webdatagrid's InitialzeRow event like earlier used to do e.Row.Delete() for UltraWebGrid.
Thanks.
Hi jerome_w,
You are correct in that you should filter the row out of the data being given to the grid. You can even use the filtering behavior to do so and hide its UI.
regards,David Young