DHTMLX Docs & Samples Explorer

onCellChanged Event

Required library edition: This method requires Professional Edition of the DHTMLX library

Occurs when cell value was changed by user actions or by API calls ( event will be called for data set during loading from XML data, or during adding new row as well )

This event calls user-defined handlers (if there are any) and passes the following parameters:

  • rId - id or the row;
  • cInd - index of cell;
  • nValue - new value.
          grid.attachEvent("onCellChanged", function(rId,cInd,nValue){});