GWTExtTabPanel¶
GWT-Ext Tab.
Extends HTMLObject
Extends SeSSimulatedObject
Behavior Pattern: GWTExtTabPanelBehavior
Property Summary¶
| Property | Description | Getter | Setter |
|---|---|---|---|
| ItemsCount | Number of tabs in the panel | GetItemsCount | |
| SelectedIndex | Index of the selected tab | GetSelectedIndex | |
| SelectedTab | Text of the selected tab | GetSelectedTab |
Action Summary¶
| Action | Description |
|---|---|
| DoSelectTab | Selects the tab by name. |
Property Detail¶
ItemsCount¶
Number of tabs in the panel
Type: number
Accessors: GetItemsCount
value = SeS('SomeGWTExtTabPanel').GetItemsCount()
SelectedIndex¶
Index of the selected tab
Type: number
Accessors: GetSelectedIndex
value = SeS('SomeGWTExtTabPanel').GetSelectedIndex()
SelectedTab¶
Text of the selected tab
Type: string
Accessors: GetSelectedTab
value = SeS('SomeGWTExtTabPanel').GetSelectedTab()
Action Detail¶
DoSelectTab¶
Selects the tab by name.
SeS('SomeGWTExtTabPanel').DoSelectTab(name, x, y, forceEvent)
Parameters:
| Name | Type | Description |
|---|---|---|
| name | string | number | Tab name to select |
| x | number | X-coordinate of location relative to object's left border |
| y | number | Y-coordinate of location relative to object's top border |
| forceEvent | boolean | pass 'true' to force browser event without actual mouse click. Optional. |
Returns:
boolean: 'true' if success, 'false' otherwise.