Check documentation for the latest version of dhtmlxSuite onUnDock DHTMLX Docs

onUnDock

fires when the cell docks into the window

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

Example

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

Back to top