AD
Administrator
Syncfusion Team
March 24, 2006 05:13 AM UTC
Hi,
A grid cell can be disabled by just setting the e.Style.Enabled property to false which won’t allow the user to select that cell. To allow the user to select the ComboBox type cell and make it ReadOnly and not to show the dropdown list, any one option from the below code snippet can be opted.
1) e.Style.Clickable = false;
e.Style.ReadOnly = true;
2) e.Style.ShowButtons = GridShowButtons.Hide;
e.Style.ReadOnly = true;
Let us know if you have any further queries.
Regards,
Calvin.