Categories | Question details Back To List | ||
dhtmlxTabbar: staying within the tabbed structure I'm loading my tabs via XML as follows: <script> tabbar=new dhtmlXTabBar("a_tabbar","right"); tabbar.setImagePath("imgs/"); tabbar.loadXML("tabs4.xml"); tabbar.setStyle("modern"); tabbar.enableAutoSize(true,true); </script> The content of some of my tabs has links and/or forms and what I want to know is how can I ensure that following submission of a form or the clicking of links that the content doesn't break out of the tabbed structure. For example, one of the tab ids in tabs4.xml is as follows: <tab id="a2" width='60px' href="view.php?status=s">2</tab> The page that is loaded contains a link which if clicked will call "view.php?status=t" rather the originally loaded content which was "view.php?status=s" Is there a way I can do this and stay within the Tab. Similarly is it possible to submit data on a form within a tab and remain within the same tab? Thanks in advance for any help with the above. Answer posted by Alex (support) on Aug 10, 2009 02:02 If you use ajax or ajax xml loading mode, the content is part of the whole page in contrast to iframes loading mode when content is loaded into iframes. For example the html that is returns by view.php?status=s is added to page with tabbar. So, you should take that into consedaration when you create link or submit functionality. In case of link you can call method setContentHref(id,url) to load new content instead of the previous one. |