I have created a super container which contains header,body and footer.
In the body container I have created three tabs as
tabbar= parent.dhtmlxLayoutObj.cells(“b”).attachTabbar();
In the third tab, I have some more sub containers. In the subcontainers, I need to refer to tabbar object and setTabActive(“first tab”);
Here the challenge is getting the tabbar object reference through traversal the DOM Elements. I tried document.getElementByID and window.parent. some how both are working. any third solution you can suggest?
in the later of the program, we are unable to get the reference through document.getelementById(‘a_tabbar’).
We tried using parent.document.getElementyById(‘a_tabbar’);
We are getting null.