Check documentation for the latest version of dhtmlxSuite forEachCell DHTMLX Docs

forEachCell

an iterator, calls a user-defined handler for each cell

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

Example

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

Back to top