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

ASPxGridBehaviorSettings.ConfirmDelete Property

Specifies whether the Confirm Delete window is displayed before a data item (row, card, or record) is deleted.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

true, to display the Confirm Delete window; otherwise, false.

Remarks

Set the ConfirmDelete property to true to display the Confirm Delete window before a data item is deleted. This window allows an end-user to cancel the delete operation.

Use the ASPxGridTextSettings.ConfirmDelete property to specify the Confirm Delete window’s text.

ConfirmDelete

<dx:ASPxGridView runat="server" ID="Grid" Width="100%" EnableRowsCache="false" DataSourceID="DemoDataSource1" KeyFieldName="ProductID"
        OnContextMenuInitialize="Grid_ContextMenuInitialize" OnContextMenuItemClick="Grid_ContextMenuItemClick">
     ...
     <SettingsBehavior ConfirmDelete="true" EnableCustomizationWindow="true" EnableRowHotTrack="true" />
     <SettingsText ConfirmDelete="Are you sure you want to delete the row?" />
</dx:ASPxGridView> 

For a full example, see Grid - Context Menu demo.

See Also