Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Dmitry on Aug 27, 2009 05:09
open dhtmlx forum
hideToolbar & hideStatusbar for Layuot

How to hide Toolbar & hide Statusbar for Layuot?
For window it`s ok
Answer posted by Alex (support) on Aug 27, 2009 08:34

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()

Answer posted by Dmitry on Aug 27, 2009 09:05
Thank you!