I have a “submit” button in my slate app. I’d like a pop-up message that tells me that my submit action is completed successfully, similar to how it’s done in Workshop. Is that possible?
Currently, when I click submit - nothing happens, while in fact the data have been submitted.
You can use an event/action pair to trigger a dialog to open.
As an example, if you have button widget called w_button_1 that you click to submit your action, and a dialog widget called w_toast_1 that can show a message, you can use the event w_button_1.click to trigger the action w_toast_1.open to show that dialog popping up.