首页 > 解决方案 > 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?

标签: powerappspower-platformpowerapps-portal

解决方案


您可以尝试以下方法:

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

在此处输入图像描述

检查一切后:

在此处输入图像描述

代码说明:

它对& - And 所有复选框值进行操作,如果全部为真(选中),则按钮显示模式将编辑,否则将处于禁用状态。

在此处输入图像描述


推荐阅读