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

LayoutItemBase.ClientVisible Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

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

Property Value

Type Default Description
Boolean **true**

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

Remarks

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

Note

If an item’s server LayoutItemBase.Visible property is set to false, the layout item is not rendered on the web page, so it can’t be manipulated on the client side.

See Also