Hi all,
I have an app with a few combo box which data source are from SharePoint choices columns.
On the form along with these combo boxes, I also have a submit button.
The below properties are what I have on my combo boxes and button controls..
First combo box:
Items: Choices([@Ballot].'Select Group')
Second combo box:
Items: (Choices([@Ballot].'Voter Name')
Third combo box:
Items: (Choices([@Ballot].'Score')
Button Submit:
OnSelect:
SubmitForm(FormVoting);
NewForm(FormVoting);
Navigate(ScreenConfirmation);
Question:
1- How can I set my submit button control to be disabled until ALL combo boxes are filled/selected?
2- How can I setup a pop up box it the submit button is pressed without all combo boxes are filled?
Thank you all in advance.