It appears that the documentation is missing for the ListGrid event editorChange(). I found it used in the calculated column example and it was a feature I was looking for but ended up replicating yesterday.
Here is the source comment:
I suppose the "advancedInlineEdit" visibility is not being included in the documentation as a search does not find this method.
Here is the source comment:
Code:
//> @method listGrid.editorChange
// Callback fired when an edit modifies the value of a cell (before attempting to save that
// value permanently)
//
// @param record (ListGridRecord) record being edited (null if this is a new row)
// @param newValue (any) new value for the cell
// @param oldValue (any) old value for the cell
// @param rowNum (number) row number for the cell
// @param colNum (number) column number of the cell
// @visibility advancedInlineEdit
// @group editing
// @example calculatedCellValue
//<
editorChange : "record,newValue,oldValue,rowNum,colNum",
Comment