Check documentation for the latest version of dhtmlxSuite detachToolbar DHTMLX Docs

detachToolbar

detaches dhtmlxToolbar from a cell

void detachToolbar();

Example

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

Back to top