Skip to main content
Tab

EditButton.ClientVisible Property

Gets or sets a value that specifies the initial visibility state of an edit button on the client.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean true

true to make a button initially displayed on the client; false to render the button on the web page, but make it initially hidden on the client side.

Remarks

Use the ClientVisible property to define an edit button’s initial visibility state. The button’s visibility can then be dynamically changed on the client side using the ASPxClientButtonEditBase.SetButtonVisible method.

Note

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

See Also