fires before edit operation is initiated
cell | object | the cell that will be edited (details below) |
boolean | returning false will prevent editing of an item |
$$("datatable1").attachEvent("onBeforeEditStart", function(cell){
//... some code here ...
return true;
});
The cell parameter is an object with the following properties:
$$("datatable1").attachEvent("onBeforeEditStart", function(cell){
webix.message("The editor will be opened in row " + cell.row + " column \"" + cell.column + "\"");
return true;
});