progressOn() is not working

Hi,

I am using progressOn function but it’s not working. I just want to show some prcessing thing while loading page.
Please provide me some help.

I am using below code to show pop-up. In this here I want ot show processing whie loading page

function showDHTMLXPopUpSH(url, xCoord, yCoord, pWidth, pHeight, modalYN, headerText, hideButtons)
{
var imgPathWindow = “…/DHTMLX/dhtmlxWindows/codebase/imgs/dhxwins_c594/”;
var popupWindow;
dhxWins1 = new dhtmlXWindows();
dhxWins1.setImagePath(imgPathWindow);
dhxWins1.setSkin(“c594”);
popupWindow = dhxWins1.createWindow(“popupWindow”, xCoord, yCoord, pWidth, pHeight);

dhxWins1.window("popupWindow").setText(headerText);
 
popupWindow.attachURL(url);
popupWindow.show();
popupWindow.setModal(modalYN);
if(hideButtons==true)
{
    dhxWins1.window("popupWindow").button("park").hide();
    dhxWins1.window("popupWindow").button("minmax1").hide();
}

document.body.scroll="no";
dhxWins1.window("popupWindow").progressOn();

}

Hi,

locally “progress” functionality works. Here are teh sample in the window package:

dhtmlxWindows/samples/03_settings/08_progress.html

Make sure that progress.gif is included into the folder with windows images. For the dhx_skyblue skin it is imgs/dhxwins_dhx_skyblue/active

Thanks a lot…

Is this possible to show progressOn image on center of the page and making screen disable/gray while progress is on. Could you please help me with an example

Windows doesn’t provide methods to show the progress image. But layout does. You may try to attach 1C layout into the window, hide its header and attach page into layout cell:

dhtmlx.com/docs/products/dht … gress.html