jquery - Tabbed User Interface -
i looking implement tabbed user interface finding code stuck in 1 aspx file. becoming mess fast , tutorials show tabs in way.
are there ways implement tabbed user interface each tab being separate aspx file or people lot of coding make tabs performance better such using update panels...only loading data on active tab...
i cant imaging once project gets large enough , have 30 tabs exist on 1 aspx file.
other breaking tabs groups other suggestion on how professionals handle this?
load content via ajax:
http://jqueryui.com/tabs/#ajax
refer example on in docs.
<ul> <li><a href="#tabs-1">preloaded</a></li> <li><a href="ajax/content1.html">tab 1</a></li> <li><a href="ajax/content2.html">tab 2</a></li> <li><a href="ajax/content3-slow.php">tab 3 (slow)</a></li> <li><a href="ajax/content4-broken.php">tab 4 (broken)</a></li> </ul> the url <a> tag specifies source tab content.
Comments
Post a Comment