Window Contents URL Load Progress Indicator

Hello,

I would like to have a progress indicator show in the DHTMLX window contents while a URL is being loaded. I know the header in a window can be setup with a progress indicator, but I would like the contents of the window to show a progress indicator similar to a layout cell progress indicator while the URL window contents are being loaded. How can I accomplish this effect?

Hello,

you may place 1C layout to window and hide its header:

var layout = win.attachLayout(“1C”);
layout.cells(“a”).hideHeader();

layout.progressOn(); //or layout.cells(“a”).progressOn();

layout.cells(“a”).attachURL(…);