Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
967 views
in Technique[技术] by (71.8m points)

power platform - PowerApps Portal - Form with checkboxes + Submit

I wanted to make a form that would have multiple sentences with one checkbox each. When all of them are accepted (ticked) i wanted to have a submit button to become enable (previously disabled).

Is it possible? How can i do it?

question from:https://stackoverflow.com/questions/65935459/powerapps-portal-form-with-checkboxes-submit

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You could try something like below :

If(Checkbox3.Value && Checkbox2.Value && Checkbox1.Value,DisplayMode.Edit,Disabled)

enter image description here

When everything is checked :

enter image description here

Code explanation :

It does an & - And Operation for all the checkbox values and if all are true (Checked), then the button displaymode will Edit else will be in disabled state.

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...