Check documentation for the latest version of dhtmlxSuite forEachItem DHTMLX Docs

forEachItem

iterator, calls a user-defined function n-times

void forEachItem(function handler);
handlerfunctiona user-defined function, dhtmlXCellObject is passed as incoming argument

Example

myAcc.forEachItem(function(cell){
    // cell => myAcc.cells(id)
    // your code here
});

Back to top