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

NavBarGroup.ClientVisible Property

Gets or sets a value that specifies the group’s initial visibility state on the client.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(true)]
public bool ClientVisible { get; set; }

Property Value

Type Default Description
Boolean **true**

true to make a group initially displayed on the client; false to render the group into the control, but make it initially hidden on the client side.

Remarks

Use the ClientVisible property to define a group’s initial visibility state. The group’s visibility can then be dynamically changed on the client side using the ASPxClientNavBarGroup.SetVisible method.

Note

If a group’s server NavBarGroup.Visible property is set to false, the group is not rendered into the web page at all, so it can’t be manipulated on the client side.

See Also