VerticalGridCommandRow.ShowEditButton Property
Specifies the visibility of the Edit command button in the command row.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Remarks
Follow the steps below to allow the grid to display the Edit command button in the command row:
- Set the Mode property to
Batch
. - 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