YUI recommends YUI3.
YUI 2 has been deprecated since 2011. This site acts as an archive for files and documentation.
This documentation is no longer maintained.
This demonstrates how to load Tab content from an external data source.
The YUI TabView provides a built-in way to load external data.
Because our content depends on JavaScript, in this case we will build our TabView entirely from script. First create a container to insert our new TabView into. This can be any existing element on the page, including the <body>
, but for this example, we will create a <div>
called container
:
Next we will create a TabView instance, omitting the element
argument, which signals the constructor to create the TabView container:
Next we add tabs to our TabView, including the label and a dataSrc
pointing to the content, setting the default selected tab to "active". To minimize the number of requests, we will set each cacheData
for each Tab.
All that is left is to append our new TabView to our container:
This is a basic example of how to load content from an external source into a TabView widget.
Note: Logging and debugging is currently turned off for this example.
All YUI 2.x users should review the YUI 2.8.2 security bulletin, which discusses a vulnerability present in YUI 2.4.0-2.8.1.
Copyright © 2013 Yahoo! Inc. All rights reserved.