SmartGwtTabControl¶
DOM SmartGwt SmartGwtTabControl.
Extends HTMLObject
Extends SeSSimulatedObject
Behavior Pattern: DomSmartGwtTabControlBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
ItemsCount | Number of items. | GetItemsCount | |
SelectedIndex | Index of the selected element of the object. | GetSelectedIndex | |
SelectedTab | Text of the selected tab | GetSelectedTab |
Action Summary¶
Action | Description |
---|---|
DoSelectTab | Selects the tab by name. |
Property Detail¶
ItemsCount¶
Number of items.
Type: number
Accessors: GetItemsCount
value = SeS('SomeSmartGwtTabControl').GetItemsCount()
SelectedIndex¶
Index of the selected element of the object.
Type: number
Accessors: GetSelectedIndex
value = SeS('SomeSmartGwtTabControl').GetSelectedIndex()
SelectedTab¶
Text of the selected tab
Type: string
Accessors: GetSelectedTab
value = SeS('SomeSmartGwtTabControl').GetSelectedTab()
Action Detail¶
DoSelectTab¶
Selects the tab by name.
SeS('SomeSmartGwtTabControl').DoSelectTab(tabName)
Parameters:
Name | Type | Description |
---|---|---|
tabName | string | Tab name to select |
Returns:
boolean: 'true' if success, 'false' otherwise.