Hi All,
I am looking for a way to disable the displaymode of my Submit button based on the following conditions:
1) If 'Other' is selected in the drop down list of Combo Box.
2) If no item is selected in the drop down list e.g. when someone loads the app it will show disabled till they select an option.
What is the easiest to go around this please
Config :
ComboBox1.Selected.Value
Make your viewmode on the button the following:
If(dropdown1.selected.value = "Other" And dropdown2.selected.value = "Nothing", ViewMode.Disabled, ViewMode.Edit)
If by nothing you mean that the dropdown is empty and nothing was selected then change the dropdown2.selected.value = "Nothing" to IsBlank(dropdown2) and this should work. You will have to make sure that the defualt value for the dropdown is blank for this to work of course.