Hi there
I try to build a Layout with 4 Cells in a Cell of Layout 3J.
That works fine and very fast in Firefox, but in IE9 it’s very slow (> 1 Second).
My Target ist to build 12 Cells in the right Cell of the 3J Layout to show 12 different Charts for Performance Data.
If i make that, it works fine in Firefox, but IE9 hangs without no message for ever…
I build the 4 cell Layout with following Code:
layout = new dhtmlXLayoutObject(document.body,“3J”)
chart_layout_1 = new dhtmlXLayoutObject(layout.cells(“b”),“2U”) ;
chart_layout_2 = new dhtmlXLayoutObject(chart_layout_1.cells(“a”),“2E”) ;
chart_layout_3 = new dhtmlXLayoutObject(chart_layout_1.cells(“b”),“2E”) ;
I’m very new to dhtmlx and any Help is very welcome !
Attached you’ll find the Democode and a Screenshoot of the Custom Layout I wanna build.
There is a grid attached in layout.cells(“a”) and layout.cells(“c”), “a” with jason data and “c” with data loaded by a connector-script.
I removed them in the Democode because it’s dosen’t matter to the problem.