hello everybody,
i am troubleshooting an issue concerning this code
var layoutOuter = new dhtmlXLayoutObject(“layoutOuter”, “1C”);
var layoutInner = new dhtmlXLayoutObject(layoutOuter.cells(“a”), “layoutInner”, “2U”);
layoutInner is always 3E, changes of layoutOuter are reflected ok.
kind regards,
erich lorman
Why not use the next code ?
var layoutOuter = new dhtmlXLayoutObject(“layoutOuter”, “1C”);
var layoutInner = layoutOuter.cells(“a”).attachLayout(“2U”);
mea culpa,
thank you, that helps