Skip to main content

NavBarSettings.AllowSelectItem Property

Gets or sets a value specifying whether items can be selected within NavBar.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public bool AllowSelectItem { get; set; }

Property Value

Type Description
Boolean

true if items can be selected; otherwise false.

Remarks

Set the AllowSelectItem property to true to enable item selection. If the item selection is enabled, end-users can select items by clicking on them. Otherwise, items cannot be selected. Note that only one item can be selected at the same time within the NavBar if the AllowSelectItem property is set to true.

Items can also be selected via code. Set the NavBarItem.Selected property value to true for this purpose.

See Also