How to use modal for delete confirmtion

I want to know how to use modal confirmation for delete action. i have already added delete button and its action to delete the record in my table. but i want to alert a confirmation before delete the record. i saw one of other post here , but it didn’t had any step by step guide. so please help me do this asp… thanks…

your initial delete button click event should set a variable to the id of the record you want to delete and show the model.
the modal should then contain a server connect form to execute the delete routine passing the id and a cancel button if course…

1 Like

Assuming that you have already created the Server Connect Action Steps, have a look at https://www.youtube.com/watch?v=7dVyEJdsMBA&t=0s&list=PLUjqTJN3byC9kK8YZkmGwjo9nrEipl2yb&index=22 for the client side.

Edit: Maybe you would like to follow the whole series https://www.youtube.com/playlist?list=PLUjqTJN3byC9kK8YZkmGwjo9nrEipl2yb

2 Likes

There is another way of doing this, using the native browser dialogs: Show Confirmation Popup when Deleting Records

That’s just in case you don’t want to deal with modals :slight_smile: