DHTMLXLayout in DhtmlxTabbar which is in main Layout

Hi,
This is Jagadeesh, I have problem with 2E layout creation in dhtmlxtabbar, which is in mainlayout. Actually Its giving error invalid argument in dhtmlx.js while creating 2E layout in dhtmlxtabbar. But the case is succeeded creating 1C layout in dhtmlxtabbar.Can any one please help me for this.

Thanks & Regards
G.Jagadeesh

Hi
Locally there is no issue (based your sceme)
We need your code to see the logic.
Or if you have a std suit, you can attach completed demo
docs.dhtmlx.com/doku.php?id=othe … leted_demo

Hi!

I am having the identical issue.
DHTMLX suite 3.0 pro

This works:

tabbar = new dhtmlXTabBar("a_tabbar", "top");
tabbar.setSkin('dhx_skyblue');
tabbar.setImagePath("/DHTMLX/dhtmlxtabbar/codebase/imgs/");
tabbar.enableForceHiding(1);
tabbar.addTab("discussion", "Discussion", "100px");
DiscussionLayout = tabbar.cells("discussion").attachLayout("1C");
DiscussionLayout.cells("a").attachURL("Window_Discussion.php?IssueID=1");

But this does not:

tabbar = new dhtmlXTabBar("a_tabbar", "top");
tabbar.setSkin('dhx_skyblue');
tabbar.setImagePath("/DHTMLX/dhtmlxtabbar/codebase/imgs/");
tabbar.enableForceHiding(1);
tabbar.addTab("discussion", "Discussion", "100px");
DiscussionLayout = tabbar.cells("discussion").attachLayout("2E");
DiscussionLayout.cells("a").attachURL("Window_Discussion.php?IssueID=1");

nevermind!

fixed by removing this:

tabbar.enableForceHiding(1);