Check documentation for the latest version of dhtmlxSuite detachMenu DHTMLX Docs

detachMenu

detaches dhtmlxMenu from component's top

void detachMenu();

Example

var myMenu = dhxComponent.attachMenu();
 
// detach
dhxComponent.detachMenu();
myMenu = null;

Back to top