Check documentation for the latest version of dhtmlxSuite onContentLoaded DHTMLX Docs

onContentLoaded

fires when content of the external page is loaded into the window

void onContentLoaded(object win);
winobjectwindow instance

Example

myWins.attachEvent("onContentLoaded", function(win){
    // your code here
});

Related samples

Details

win is dhtmlXWindowsCell instance, please check dhtmlXWindowsCell API for details

Back to top