Skip to main content

afterEditStart

fires after editing of a cell has started

afterEditStart: (row: object, column: object, editorType: string) => void;

Parameters:

The callback of the event is called with the following parameters:

  • row: object - an object with a row configuration
  • column: object - an object with a column configuration
  • editorType: 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
});

Change log:

added in v6.1