Skip to main content
A newer version of this page is available. .

BootstrapAccordion.SelectedItem Property

Gets or sets the selected item within the BootstrapAccordion control.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.1.dll

Declaration

[Browsable(false)]
public BootstrapAccordionItem SelectedItem { get; set; }

Property Value

Type Description
BootstrapAccordionItem

A BootstrapAccordionItem object representing the selected item.

Remarks

If the BootstrapAccordion’s ASPxNavBar.AllowSelectItem property is set to true, end users are allowed to select items via mouse clicks. The BootstrapAccordion also provides the capability to select items via code. You can use the SelectedItem property for this purpose.

Note that only one item can be selected within a BootstrapAccordion control at the same time.

If none of the items is selected within a BootstrapAccordion control or selecting is prohibited, the SelectedItem property returns null (Nothing in Visual Basic).

In order to select a specific item within a particular group, use the item’s NavBarItem.Selected property instead. The required item can be obtained via its group’s BootstrapAccordionGroup.Items collection.

See Also