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.