Get KoolPHP UI with 30% OFF!

Preventing other columns in row for editing.

Keyur
If I have 5 columns in a grid and I am not using any type of customised template. Using Inline grid editing.
Now if i want to edit only one field in that row, how do I lock all other fields to prevent editing?
Posted Dec 9, 2015 Kool
Peter
Hi Keyur,
The most simple way is to set ReadOnly for column:
$column = new GridBoundColumn();
$column->ReadOnly = true;
...
Posted Dec 9, 2015 , edited Dec 9, 2015 Kool