DHTMLX Grid : Making a row editable based on context menu op

How to make a row editable based on the context menu option.



Suppose I want to make a row editable based on context menu option called “Edit” means ONLY that particular row should be editable and all other rows should be uneditable.



How to do this ?

You can make all rows in grid locked during data loading. It can be done by using locked attribute of row tag
    …

In context menu handler , you can can un-lock row by using
    grid.lockRow(row_id,false);