Hello community,
is there a way to add a free filter for from an to date?
I have an entity list and will give users a possibility to set their own a start and end date.
I saw option like 'on' and 'on-before', 'last-month' and so on.
But I have to enter an exact date in it.
Thanks,
AndKan.
Solved! Go to Solution.
Hi, please take a look at this article: https://www.netwoven.com/2019/04/16/how-to-add-date-range-filter-controls-in-entity-list-in-dynamics...
Power Pages Super User | MVP
Hi, please take a look at this article: https://www.netwoven.com/2019/04/16/how-to-add-date-range-filter-controls-in-entity-list-in-dynamics...
Power Pages Super User | MVP
Hello Oliver ,
thank you for link.
After fixing attribute name in fetchXML filter into my attribute name, it works fine.
I simplified whole construction with
$('[name="7"]').prop('type', 'date');
$('[name="8"]').prop('type', 'date');
// no .hide()
instead of whole datepicker.
That's enough in my case.
Thanks a lot, AndKan.