So my problem looks like this:
I have form with a combobox/dropbox(I tested it with both of this controls so I will write like that). Then for property Items=["Cat","Mouse","Dog"].
Now I want to make a checkbox visible only when the item selected is for example "Cat". I use expression like that:
Visible=If(ComboBox1.Selected.Value="Cat", true, false).
It does not work, makes always my checkbox not visible.
I tested it even further....I just put text label, and I always see it black like the element does not exist outside the combobox/dropbox.
Can anyone help me?
Thanks a lot!