hideToolbar & hideStatusbar for Layuot

How to hide Toolbar & hide Statusbar for Layuot?

For window it`s ok


You can try to use the same approach for layout:


dhxLayout.cells(cell_id).showToolbar() / dhxLayout.cells(cell_id).hideToolbar()
dhxLayout.cells(cell_id).showStatusBar() / dhxLayout.cells(cell_id).hideStatusBar()




If you meant global statusbar and toolbar, you can use the the following approach:


dhxLayout.cont.obj.showToolbar() / dhxLayout.cont.obj.hideToolbar()
dhxLayout.cont.obj.showStatusBar() / dhxLayout.cont.obj.hideStatusBar()



Thank you!