fires after edit operation was initiated, editor opened and ready for input
cell | object | the cell that will be edited (details below) |
some.attachEvent("onAfterEditStart", function(id){
//... some code here ...
});
The cell parameter has the following properties:
$$("datatable1").attachEvent("onAfterEditStart", function(cell){
webix.message("Row" + cell.row + " column \"" + cell.column + "\"");
return true;
});