Can anyone tell me the usacases on dynamic hide and show properties in apps

can anyone tell me the usacases on dynamic hide and show properties based on dropdown input selection in apps

Hi @panguluri_saritha! A simple example of this is a dropdown with three values

=List("One", "Two", "Three")

Let’s say you wanted to only show another control (or a container with more controls in it) when “Two” is selected.

=Dropdown != "Two"

Input validation.uiapp (74.5 KB)

1 Like