How do I not allow the user to go into the first column of my grid?

I just want to show data here. I don''t want it editable or even clickable. And I dont'' want the enter key to be able to select the cell either.

1 Reply

AD Administrator Syncfusion Team January 26, 2004 08:12 PM UTC

Try setting the GridStyleInfo.Enabled property to false for the column. In a GridDataBoundGrid, you would do this in either grid.GridBoundColumns[col].StyleInfo.Enabled = false; or grid.Binder.InternalColumns[col].StyleInfo.Enabled = false; depending upon whether you have explicitly added GridBoundColumns to your grid.

Loader.
Up arrow icon