
Announcements
I have a screen that has a few filter fields, that results in the gallery items and when selected shows the details in the form. In order to avoid delegable issues, I would like the screen to appear, showing the filter fields, with the gallery/form hidden. Only after the user enters criteria to filter the dataset, will the gallery visible property get set to true, showing the records that meet the filter within the form. Filtered items are very specific such as the date from/to, or ticket # or location or receipt number.
Any ideas?
Hi @AnnetteM ,
A simple approach is to use combined IsBlank functions for Visible of the Gallery and Form.
And(IsBlank(SearchTextBox.Text), IsBlank(criteriaDropdown1.Selected.Value), IsBlank(criteriaDropdown2.Selected.Value),...)
It means if any of the criteria is not blank, show the Gallery and Form.
Another method is to use variables OnSelect of buttons to include these criteria, and IsBlanks to check all of the variables on Visible of Gallery and Form. The two methods are basically the same, though.
Best regards,