fires when a cell value has been changed by user actions or by API calls ( )
rId | string|number | the id of a row |
cInd | number | the index of a cell |
nValue | mixed | a new value |
Available only in PRO Edition
grid.attachEvent("onCellChanged", function(rId,cInd,nValue){
//your code here
});
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