Solved

Progress bar control in grid which should show the completion percentage


Userlevel 2
Badge +3

Hi,

We wanted to have a progress bar in grid for each employee record, which will show the percentage based on the fields entered and saved by an employee. 

How to use the progress bar control? Any previously made examples would be helpful.

Thanks,

Usha

icon

Best answer by Renée Evertzen 13 July 2022, 10:18

View original

This topic has been closed for comments

2 replies

Userlevel 4
Badge +3

Hello Usha,

You can set up a domain with the progress bar control, as you already mentioned yourself. This can be a domain with a numeric or an int as a datatype. You would then have to set up a column that uses that domain.

In that column you can calculate a value, or technically a percentage, depending on the conditions that you want to apply. This can be calculated in a trigger or a default, depending on your preferred situation.

So for example:

  1. Knowing first name = 10%
  2. Knowing first name + surname = 25%
  3. Knowing first name + surname + phone number = 40%
  4. Knowing first name + surname + phone number + email address = 60%
  5. Knowing first name + surname + phone number + email address + full home address = 100%

Something like that 😄

This will then be presented in the application like this:

 

Hopefully this answers your question!

Userlevel 2
Badge +3

Thank you for the quick reply Renee, will try this out and update 🙂