Progress bar in data view widget

0
Hello everyone,   How to create the   progress bar in data view for the completion status of the new edit fields  , please explain step by step.  Please share your ideas.
asked
2 answers
0

Hi Swetha

 

Please try this widget 

https://marketplace.mendix.com/link/component/48910/Mendix/Progress-Bar

answered
1

Swetha 

Then you have to write the custom logic

suppose there are 4 fields on the new edit

Go to first field -> go to event tab -> make a microflow on OnChange -> in the microflow take a decision & check null check $currentObjcet/Name!=empty(suppose 1 field is name) if it’s true then change the object $currentObject/progressBar assign 25 if false you can end the event or show the validation feedback,

 

Similarly do for 2 second field check $currentObject/Name!=empty then again check $currentObject/DOB!=empty if it’s true change the object $currentObject/progressBar assign 50 if false end the event or show the validation feedback.

 

Do for all

 

Hope you like the answer 

 

answered