editRow
enables the edit mode for the specified row
function editRow( // the row id id: string): void
Example
Section titled “Example”dtable.editRow(2); //enables the edit mode for the row with id=2
also check the next samples:
Details
Section titled “Details”By default, the method sets the cursor to the first cell of the row.
Note that the method will work only with the enabled editable parameter:
webix.grid({ editable:true, ...});
See also
Section titled “See also”Articles
API