JqxTabs: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 12: | Line 12: | ||
<pre> | <pre> | ||
Function Tabs1_onselected(e) | |||
MsgBox "selected " & e.args.item | |||
End Function | |||
Function Tabs1_ontabclick(e) | |||
MsgBox "tabclick " & e.args.item | |||
End Function | |||
</pre> | </pre> | ||
Revision as of 21:37, 4 January 2013
Description
jqxTabs represents a jQuery Tabs widget. jqxTabs is breaking the content into multiple sections. You can populate it from 'LI' elements for the tab titles and 'DIV' elements for tab contents.
Properties and Methods
See the complete documentation at jqWidget's site: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtabs/jquery-tabs-getting-started.htm
Example
Function Tabs1_onselected(e) MsgBox "selected " & e.args.item End Function Function Tabs1_ontabclick(e) MsgBox "tabclick " & e.args.item End Function
Output
See above.