Check documentation for the latest version of dhtmlxSuite onDock DHTMLX Docs

onDock

fires when the window docks into the accordion

void onDock(string|number id);
idstring|numbercell id

Example

var myAcc = new dhtmlXAccordion(...);
 
myAcc.attachEvent("onDock", function(id){
    // your code here
});

Back to top