Check documentation for the latest version of dhtmlxSuite onCellChanged DHTMLX Docs

onCellChanged

fires when a cell value has been changed by user actions or by API calls ( )

void onCellChanged(string|number rId,number cInd,mixed nValue);
rIdstring|numberthe id of a row
cIndnumberthe index of a cell
nValuemixeda new value

Available only in PRO Edition

Example

grid.attachEvent("onCellChanged", function(rId,cInd,nValue){
    //your code here
});

Details

the event will be called for data set during the loading from XML data, or during the adding of a new row as well

Back to top