Skip to main content
Tab

TabbedLayoutGroupTabPageSettings.EnableClientSideAPI Property

Gets or sets a value that specifies whether the tabbed layout group can be manipulated on the client side via code.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool EnableClientSideAPI { get; set; }

Property Value

Type Default Description
Boolean false

true, if the tabbed layout group’s client object model is fully available; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to EnableClientSideAPI
TabbedLayoutGroup
.SettingsTabPages .EnableClientSideAPI

Remarks

The EnableClientSideAPI property controls the availability of the client-side API for the tabbed layout group.

A tabbed layout group implements a comprehensive JavaScript-written client-side object model (client API), allowing you to programmatically manipulate the control on the client.

If you want to use the tabbed group’s client-side API in your application, set the EnableClientSideAPI property to true, to make sure that the client API is available on the client side.

Note

Regardless of the EnableClientSideAPI property setting, the client-side API is automatically enabled if the TabbedLayoutGroup.ClientInstanceName property is defined, or any client event exposed by the TabbedLayoutGroup.ClientSideEvents property is handled.

See Also