Check documentation for the latest version of dhtmlxSuite detachStatusBar DHTMLX Docs

detachStatusBar

detaches status bar object from component's bottom

void detachStatusBar();

Example

var sbObj = dhxComponent.attachStatusBar();
 
// detach
dhxComponent.detachStatusBar();
sbObj = null;

Back to top