Skip to main content
Tab

VerticalGridCommandRow.ShowEditButton Property

Specifies the visibility of the Edit command button in the command row.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

true if the button is visible; otherwise, false.

Remarks

Follow the steps below to allow the grid to display the Edit command button in the command row:

  1. Set the Mode property to Batch.
  2. Enable the ShowEditButton property.
<dx:ASPxVerticalGrid ID="VerticalGrid" runat="server" KeyFieldName="ProductID" ...>
    <Rows>
        <dx:VerticalGridCommandRow ShowEditButton="true" />
        <!-- ... -->
    </Rows>
    <SettingsEditing Mode="Batch" />
</dx:ASPxVerticalGrid>

To specify the button settings, use the EditButton property.

See Also