Hi,
I am using dhtmlxwindow as a popup in my app.
i have 5 windows which are created initially using window object of layout object when application loaded and all in hidden mode.
based on the requirement i am showing and hiding the windows.
And i have a global window event i.e., oncontentload of window. like below.
dhxWindow.attachEvent(“onContentLoaded”,function(win)
{
if(win.idd == ‘winName’){
//do something
}else if (win.idd == ‘window2’){
//do something different
}
});
So my question is if i need layout like progress bar in my windows, i can do like
var layout = win.attachLayout(“1C”);
layout.cells(“a”).hideHeader();
Hi,
when i need progressbar i can use the modalbar as u said.
then after loding the page , i mean after completion of conted loading how can i remove that modalbar from window?