Is there a way to conditionally hide/show items in a form? In my form I have a dropdown list with a Change handler. Based on the item selected in the list, I either want to display the Budget field or the HourlyMin and HourlyMax fields. I'm not sure how to do this.
items.Add()
.Field(p => p.Budget)
.Label(label => label.Text("Budget"));
items.Add()
.Field(p => p.HourlyMin)
.Label(label => label.Text("Hourly Min"));
items.Add()
.Field(p => p.HourlyMax)
.Label(label => label.Text("Hourly Max"));
Thanks!