grid grouping control

i want only one column non editable of child grid because second column is a checkbox which we can not do not editable in grid grouping control so plz tell me solution

1 Reply

AD Administrator Syncfusion Team April 26, 2006 10:37 AM UTC

Hi Brijeshkhare, A column can be set as non editable by setting the GridColumnDescriptor’s ReadOnly property to true. Below is a code snippet. Let us know if you need any further assistance. GridTableDescriptor childTableDescriptor = this.gridGroupingControl1.GetTable("ChildTableName").TableDescriptor; childTableDescriptor.Columns["ColumnName"].ReadOnly = true; Regards, Calvin.

Loader.
Up arrow icon