Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by erich lorman on Oct 08, 2009 01:32
open dhtmlx forum
layout in layout problem

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
Answer posted by Stanislav (support) on Oct 08, 2009 02:51
Why not use the next code ?

var layoutOuter = new dhtmlXLayoutObject("layoutOuter", "1C");
var layoutInner = layoutOuter.cells("a").attachLayout("2U");
Answer posted by erich lorman on Oct 08, 2009 02:53
mea culpa,

thank you, that helps