Toolbar at the layout botom

Dear support,



How can I add the toolbar (buttons look) at the bottom of the layout?

layoutcellA --> Toolbar–> Grid–>Toolbar(button look)



Thanks in advanced


Hello,


there are 2 possible ways to attach toolbar at the bottom of the layout:


1) using statusbar, toolbar is inside it:


statusBar = dhxLayout.cells(“a”).attachStatusBar();


statusBar.setText("

");
toolbar = new dhtmlXToolbarObject(“toolbarObj”);
toolbar.setIconsPath("…");
toolbar.loadXML("…");

2) Using another layout pattern - a pattern with a additional cell. The toolbar is attached to this cell.

Thanks, it works.

Dear Support,

I am using toolbar within statusbar. It works perfectly in v2.5 but it does not work properly in 2.6. Is something changed about the status bar in 2.6?
Thanks ,

Hello,

Have you tried to use css modification that is provided here:
docs.dhtmlx.com/doku.php?id=dhtm … _to_status
?

Hello Alexandra,

Thank you. It works now.