Check documentation for the latest version of dhtmlxSuite getId DHTMLX Docs

getId

returns the id of a window

string|number getId();
string|numberthe window id

Example

myWins.forEachCell(function(window){
    var id = window.getId();
});

Back to top