afterEditStart
fires after editing of a cell has started
afterEditStart: (row: object, column: object, editorType: "input" | "select" | "datePicker" | "checkbox" | "combobox" | "textarea" | "multiselect") => void;
Parameters:
The callback of the event is called with the following parameters:
row: object
- an object with a row configurationcolumn: object
- an object with a column configurationeditorType: string
- the type of a cell editor: "input", "select", "datePicker", "checkbox", "combobox", "textarea", "multiselect"
Example
grid.events.on("afterEditStart", (row, column, editorType) => {
// your logic here
});
Related sample: Grid. Events
Change log:
added in v6.1