Best method for user approval confirmation prior to submission

im working on a way for users to approve actions, example when they press a button i want to trigger an action that asks if they are sure they want to proceed. what’s the best method to do this within glide? is their a workflow for this? I can’t seem to find a modal style with action buttons? do i just create a screen with buttons and trigger it, or is their a native solution im missing?

The simplest way to replicate this across multiple screens and items is to create a custom action which is going to open a new screen. Although you don’t need to create a custom action if it has just one step, you should do this to speed up replicating this workflow.

I’d recommend opening new screen as “overlay”, adding some hints and a button to confirm.

Now, each time you apply this “open confirmation screen” action, the exact same screen with exact same action will open up, provided you’re not using any dynamic data on it or you’re only using it across items from the same table.

Should save you a lot of time.

3 Likes

My apps are littered with these confirmation modals. Here for instance, “Remove” features in the application. I create 3 workflows: pop-up, confirm, cancel (which in the screenshot are named Pop-up, Confirmer and Annuler respectively).

Once you get the hang of it, it’s fairly quick to replicate.

2 Likes

hehe, I have very similar. Although I will admit that I often get lazy and skip the Cancel one, given that it’s almost always nothing more than “Close Overlay” :slight_smile:

2 Likes