Skip to content

JQueryAccordion

jQuery-UI JQuery Accordion.

Extends HTMLObject

Extends SeSSimulatedObject

Behavior Pattern: JQueryAccordionBehavior

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 accordion.

Property Detail

ItemsCount

Gets the number of tabs

Type: number

Accessors: GetItemsCount

value = SeS('SomeJQueryAccordion').GetItemsCount()

SelectedIndex

Gets the index of the selected tab

Type: number

Accessors: GetSelectedIndex

value = SeS('SomeJQueryAccordion').GetSelectedIndex()

SelectedTab

Gets the text of the selected tab

Type: string

Accessors: GetSelectedTab

value = SeS('SomeJQueryAccordion').GetSelectedTab()

Action Detail

DoSelectTab

Selects a specific tab of the accordion.

SeS('SomeJQueryAccordion').DoSelectTab(tabName)

Parameters:

Name Type Description
tabName string The name of the tab to select

Returns:

boolean: 'true' if success, 'false' otherwise.