Check documentation for the latest version of dhtmlxSuite forEachCell DHTMLX Docs

forEachCell

alias for forEachItem()

void forEachCell(function handler);
handlerfunctiona user-defined handler to call, item object will be passed as a param

Example

mySidebar.forEachCell(function(item){
    console.log(item.getId());
});

Details

alias for forEachItem()

Back to top