I was watching this wonderful video by Reza Dorrani:
https://youtu.be/5dSk5iOgT68
I am filtering a gallery that’s pulling information from a SharePoint list. The filter is filtering by modified date. So I have the following code in my Filter:
Modified >= FromDate.SelectedDate && Modifed <= ToDate.SelectedDate
It works great except for when dates match the Gallery date and it seems to be specific to the ToDate. For example, let’s say a listed item in the gallery was modified on July 10. If I selected July 10 in the FromDate datepicker, the listed items last modified on that date remain in the gallery. However, if I select July 10 in the ToDate datepicker, the items last modified on July 10 disappear from the Gallery.
I would think the ‘equals to’ in the code would capture this date, but it doesn’t seem to. Am I doing something wrong? Can someone help? Thanks!