Hi Community,
In the screen SelectAllfromDropdown, i have set up the following
This issue i have is that, the "Select All" is not working. Can anybody advise what had i done wrong here?
Thanks!
Hi Jun Mun,
The issue is that your aggregate will only return records where the category Id matches the selected category. In your case, your 'select all' option corresponds to category id = 0, so it will only return records for that specific category Id, rather than all categories. Try changing your aggregate's filter to:
Questions.CategoryId = SelectedCategory or SelectedCategory = NullIdentifier()
That way, when no category is selected, the filter will always evaluate to True, so all records are returned.