Check documentation for the latest version of dhtmlxSuite detachToolbar DHTMLX Docs

detachToolbar

detaches dhtmlxToolbar from a window

void detachToolbar();

Example

var myToolbar = myWins.window(id).attachToolbar();
 
// detach
myWins.window(id).detachToolbar();
myToolbar = null;

Back to top