How can the grid control specify which rows are editable?

To make a specific row in the GridControl editable, you can use the OptionsBehavior.Editable property of the GridView. Here is an example:

Make gridView1 able to be edited and not read-only.

This will make all rows in the GridControl editable. If you only want to specify certain rows as editable, you can use the OptionsBehavior.ReadOnly property of GridView to make other rows read-only. Here is an example:

gridView1 can be edited and is not read-only.

This will make all rows in the GridControl read-only, then set the OptionsBehavior.ReadOnly property of editable rows to false, making them editable.

bannerAds