HA
haneefm
Syncfusion Team
October 25, 2007 08:42 PM UTC
Hi Chad,
Try setting the Clickable and Enabled property of the GridStyleInfo object to False in a readonly grid cell. Here are the codes that shows this task
For GridControl :
>>>>>>>>>>>>>>
this.grid.ColStyles[1].Clickable = false;
this.grid.ColStyles[1].Enabled =false;
For GridDataBoundGrid:
>>>>>>>>>>>>>>>>>>>>
this.grid.Binder.InternalColumns[1].StyleInfo.Clickable = false;
this.grid.Binder.InternalColumns[1].Enabled =false;
For GroupingGrid :
>>>>>>>>>>>>>>>>
this.grid.TableDescriptor.Columns[1].Appearance.AnyRecordFieldCell.Clickable = false;
this.grid.TableDescriptor.Columns[1].Appearance.AnyRecordFieldCell.Enabled =false;
Best regards,
Haneef