
Hello,
I have an issue where a user selects a value from a combobox and a confirmation pops up. The issue is if the user clears the combobox or if I reset the control the popup appears again but without the confirmation information. I need the popup to only appear if the user selects a value.
I have the following code under the OnChange property of the combobox.
UpdateContext({varPopup:true})
I changed the OnChange formula to an If statement as follows and this has worked.
If(!IsBlank(cb_Template.Selected.Title),UpdateContext({varPopup:true}),UpdateContext({varPopup:false}))