Categories | Question details Back To List | ||
tabbar - nested tabbar using ajax-html? problems. I'm trying to load a one tab with another tabbar it throws up the errors nested_tabbar again uses another xml with hrefmode as ajax-html, how do we load the same? <?xml version="1.0" encoding="utf-8"?> <tabbar hrefmode="ajax-html"> <row> <tab id="1" width='100px' selected="1" href="test.html">t1</tab> <tab id="2" width='100px' selected="1" href="test.html">t2</tab> <tab id="3" width='100px' href="test.html">t3</tab> <tab id="4" width='100px'>Nested<content id="nested_tabbar" /></tab> </row> </tabbar> Answer posted by Support on Apr 23, 2008 07:23 Try to create html page with the nested tabbar and place this page in the "href" attribute: <?xml version="1.0" encoding="utf-8"?> <tabbar hrefmode="ajax-html"> <row> <tab id="1" width='100px' selected="1" href="test.html">t1</tab> <tab id="2" width='100px' selected="1" href="test.html">t2</tab> <tab id="3" width='100px' href="test.html">t3</tab> <tab id="4" width='100px' href="tabbar.html">Nested</tab> </row> </tabbar> |