I want to add multiple content to one tab.
I have to create a grid and underneath some HTML (text and some links).
How to succeed this?
Thanks,
JL
You can put a container into the tabbar. This div can also contain any html elements. So, you can use multiple html elements:
Some other html
…
tabbar.setContent(tabId,‘parentId’);
…
grid = new dhtmlXGridObject(‘gridId’);
You can use another way, as tabbar provides different loading modes. And samples will allow to choose the most appropriate mode:
dhtmlxTabbar/samples/loading_creating_tabs_content/
Thank you, that’s fine.