Im using the new terrace skin. And when I attach a toolbar to the layout, not to a cell, the bottom of the layout disappears at the bottom of the screen.
dhtmlxEvent(window,"load",function(){
layout = new dhtmlXLayoutObject(document.body,"1C");
with(layout)
{
menu = attachToolbar();
}
with(menu)
{
setIconPath("img/menu/");
setIconSize(32);
loadXML("data/toolbar.php");
}
});
If you will be using the methods correctly - this issue doesn’t appear:
layout = new dhtmlXLayoutObject(document.body,"1C");
menu = layout.attachToolbar();
menu.setIconPath("img/menu/");
menu.setIconSize(32);
menu.loadXML("data/toolbar.php");
attached file will fix problem. If someone used compiled version of dhtmlx - please provide completed demo, I will add fix into dhtmlx.js upd.zip (9.16 KB)