Check documentation for the latest version of dhtmlxSuite onContentLoaded DHTMLX Docs

onContentLoaded

fires when content is loaded into cell via attachURL()

void onContentLoaded(string id);
idstringcell name

Example

myLayout.attachEvent("onContentLoaded", function(id){
    // your code here
});
 
myLayout.cells("a").attachURL("test_page_1.html");

Back to top