how can i make the ggc readonly

how can i make the ggc readonly?
i dont want to let my users edit/enter/delete the rows.

1 Reply

AD Administrator Syncfusion Team February 12, 2007 03:11 PM UTC

Hi Shachar,

You can set

groupingGrid.TableDescriptor.AllowNew = false; // prevent for adding new row in a grid
groupingGrid.TableDescriptor.AllowEdit = false; // prevent editing any cells.
groupingGrid.TableDescriptor.AllowRemove = false;//prevent for removing the row in a grid

Best regards,
Haneef

Loader.
Up arrow icon