How to implement loading symbol?

0
I am working with Mendix stuido pro 11.5. While saving , it is taking time generally, i want user to see a loading symbol while it is saving and after saving it should disappear. How to implement it? Is it possible?
asked
2 answers
0

You can achieve this by adjusting the button’s microflow call settings.


Right-click the Save button → select Edit on click → open Microflow settings → choose your microflow. In the Call type section, set it to Asynchronous and then choose either Blocking or Non-blocking, depending on your preference.


If you select Blocking, Mendix will show a loading indicator and prevent the user from interacting with the page while the microflow is running. Once the save operation finishes, the loader automatically disappears. If you choose Non-blocking, the microflow will run in the background without locking the UI.


If this resolves the issue, please mark the answer as accepted.


answered
0

Hi Ayman, You can use the method that Ahmet suggested,

Additionally, to show the loading symbol, you can change the CSS of the progress bar as per your requirement and then change the UI for that.

for the loader the class is:

.mx-progress


Hope it helps!

answered