1

How do I make a modal dialog asking user to confirm deleting row in a data grid - devextreme.angular?

Looked at their Dialogs doc section - I dont see anything simple like the one I need..

Boppity Bop
  • 9,613
  • 13
  • 72
  • 151

1 Answers1

1

when you have allowDeleting true, it will show modal automatically

    <dxo-editing 
         mode="row"
         [allowUpdating]="true"
         [allowDeleting]="true"
         [allowAdding]="true">
    </dxo-editing>

enter image description here https://js.devexpress.com/Demos/WidgetsGallery/Demo/DataGrid/RowEditingAndEditingEvents/Angular/Light/

Reza
  • 18,865
  • 13
  • 88
  • 163