Skip to main content

afterEditStart

fires after editing of a cell has started

afterEditStart: (row: object, col: object, editorType: "input" | "select" | "datePicker" | "checkbox" | "combobox" | "textarea" | "multiselect") => 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
});

Related sample: Grid. Events

Change log:

added in v6.1