Devextreme Angular modal dialog

588 Views Asked by At

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..

1

There are 1 best solutions below

0
On BEST ANSWER

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/