基于 PowerApps 下拉值的导航按钮
Navigation button based on a PowerApps dropdown value
我一直在尝试设置强制下拉菜单以进入下一个屏幕。
- 调用下一个屏幕结束
- 下拉菜单被调用 type_4
这是我使用的代码,但似乎没有通过:
If(
IsBlank(type_4.Selected.Value),
Notify("Fill all the fields to continue", NotificationType.Error),
Navigate(End,ScreenTransition.Cover) )
此问题特定于下拉输入。如果它是一个文本字段,我所做的就是将 Selected.Value 替换为 Text 并且工作正常。
到目前为止,下拉菜单是我唯一的问题。
编辑:下拉菜单的默认值为Select你的答案(下拉列表的第一个选择)。
如果下拉列表的默认选项是 'Select your answer',那么您可以使用类似于下面的表达式:
If(
type_4.Selected.Value = "Select your answer",
Notify("Fill all the fields to continue", NotificationType.Error),
Navigate(End,ScreenTransition.Cover) )
我一直在尝试设置强制下拉菜单以进入下一个屏幕。
- 调用下一个屏幕结束
- 下拉菜单被调用 type_4
这是我使用的代码,但似乎没有通过:
If(
IsBlank(type_4.Selected.Value),
Notify("Fill all the fields to continue", NotificationType.Error),
Navigate(End,ScreenTransition.Cover) )
此问题特定于下拉输入。如果它是一个文本字段,我所做的就是将 Selected.Value 替换为 Text 并且工作正常。 到目前为止,下拉菜单是我唯一的问题。
编辑:下拉菜单的默认值为Select你的答案(下拉列表的第一个选择)。
如果下拉列表的默认选项是 'Select your answer',那么您可以使用类似于下面的表达式:
If(
type_4.Selected.Value = "Select your answer",
Notify("Fill all the fields to continue", NotificationType.Error),
Navigate(End,ScreenTransition.Cover) )