Check documentation for the latest version of dhtmlxSuite detachToolbar DHTMLX Docs

detachToolbar

detaches dhtmlxToolbar from component's top

void detachToolbar();

Example

var myToolbar = dhxComponent.attachToolbar();
 
// detach
dhxComponent.detachToolbar();
myToolbar = null;

Back to top