Radio Button Saved Selections
I have created a workflow based around user selections of two different groupings of radio buttons. The workflow is current set to loop back to the beginning after being run to allow the user to run the workflow again with a different combination of parameters if needed. Anyone know if there is a way to set the workflow to remember what the previous selections of the radio buttons were instead of starting off again with the 'default' display form?
Thanks,
Andrew
0
-
You might be able to do that using the form.Find(Of RadioButtonFormItem)("RadioButton1").Checked setting for each radio button. You'd have to test for each button using If statements within your runtime modifications.
- Test if the radio button was previously checked
- If yes, then set form.Find(Of RadioButtonFormItem)("RadioButton1").Checked to True
- If no, then do nothing
0 - Test if the radio button was previously checked
Please sign in to leave a comment.
Comments
1 comment