
Announcements
Hi,
I have an issue, I need many columns in my gallery and Im not liking working with the container, it is very annoying.
Does anyone know if I can dropdown filter something like this
DropdownCanvas1 Items property = ["January","February"].
And if January is selected show fields "field_1", "field_2", "field_3", "field_4", and hide the rest.
If Feb is selected Show fields "field_5", "field_6"...etc for all the months.
Can this be done? is there a better way?
HI @wonka1234 , You need to write the code on the Visible property of the fields, example:
If you want to show "field_1", "field_2", "field_3", "field_4", then below code should be written on Visible property of these fields.
If(DropdownCanvas1.Selected.Value = "January", true, false)If you want to show "field_5", "field_6", then below code should be written on Visible property of these fields.
If(DropdownCanvas1.Selected.Value = "February", true, false)-----------------------------------------------------------------------------------------------------------------------------
I hope this helps.
Please click Accept as solution ✅ if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs up.👍
Thanks,
ANB