Hello,
I have a layout with some cell and one of them requires many (15 sec) to load because it’s a complex data analisys. So I would like to use the progress on this cell, so it loads the rest of the site.
function doOnLoad() {
myLayout = new dhtmlXLayoutObject({
parent: document.body,
pattern: "4H"
});
myLayout.cells("d").progressOn();
myLayout.cells("d").setText("Pagamenti");
myLayout.cells("d").setWidth(440);
myLayout.cells("d").attachObject("div_pagamenti");
myLayout.cells("d").progressOff();
I tried the very simple way, by using ProgressOn and ProgressOff before and after the attachObject, but it didn’t worked
How can I solve this?