Hi,
Our customer have some forms with several step in it(wizard).
let say 1 forms has 7 steps.
its possible that step 4 is completed before step 3.
each step have its status field, let say for example
fd.field('Conflit_Etape1')
fd.field('Conflit_Etape2')
fd.field('Conflit_Etape3')
fd.field('Conflit_Etape4')
fd.field('Conflit_Etape5')
fd.field('Conflit_Etape6')
fd.field('Conflit_Etape7')
i there a way to change the text, change the color or the shape of the wizrd step that is completed without affecting the other?
i would like to implement a if logic in javascript like(not actual javascript in example):
if fd.field('Conflit_Etape2') ='completed' then the step number 2 in the wizrd get its text, color or shape updated.
if fd.field('Conflit_Etape4') ='completed' then the step number 4 in the wizrd get its text, color or shape updated.
is this something possible