Skip to main content

afterEditStart

fires after editing of a cell has started

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

Parameters:

  • row: object - an object with a row configuration
  • col: 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", function(row,col, editorType){
// your logic here
});

Change log:

added in v6.1