JQueryTabs¶
jQuery-UI JQuery Tabs.
Extends HTMLObject
Extends SeSSimulatedObject
Behavior Pattern: JQueryTabsBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
ItemsCount | Gets the number of tabs | GetItemsCount | |
SelectedIndex | Gets the index of the selected tab | GetSelectedIndex | |
SelectedTab | Gets the text of the selected tab | GetSelectedTab |
Action Summary¶
Action | Description |
---|---|
DoSelectTab | Selects a specific tab of the tab control. |
Property Detail¶
ItemsCount¶
Gets the number of tabs
Type: number
Accessors: GetItemsCount
value = SeS('SomeJQueryTabs').GetItemsCount()
SelectedIndex¶
Gets the index of the selected tab
Type: number
Accessors: GetSelectedIndex
value = SeS('SomeJQueryTabs').GetSelectedIndex()
SelectedTab¶
Gets the text of the selected tab
Type: string
Accessors: GetSelectedTab
value = SeS('SomeJQueryTabs').GetSelectedTab()
Action Detail¶
DoSelectTab¶
Selects a specific tab of the tab control.
SeS('SomeJQueryTabs').DoSelectTab(tabName)
Parameters:
Name | Type | Description |
---|---|---|
tabName | string | The name of the tab to select |
Returns:
boolean: 'true' if success, 'false' otherwise.