Skip to main content
Tab

ASPxCollapsiblePanel.ClientEnabled Property

Gets or sets a value that indicates whether the panel is enabled on the client.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean true

true, if the panel is enabled; otherwise, false.

Remarks

Use the ClientEnabled property to specify the panel’s initial capability to respond to end-user interactions. A panel’s availability state, defined by this property, can then be dynamically changed on the client side using the SetEnabled method.

Note

The ClientEnabled property is not in effect if the panel is disabled on the server side by using the server ASPxWebControl.Enabled property.

See Also