Check documentation for the latest version of dhtmlxSuite detachStatusBar DHTMLX Docs

detachStatusBar

detaches status bar from a window

void detachStatusBar();

Example

var sbObj = myWins.window(id).attachStatusBar();
 
// detach
myWins.window(id).detachStatusBar();
sbObj = null;

Back to top