need some help with logic.

0
Hi All, can i know if we have a project in that project there are activities and to get output we have two date pickers called start date and end date when i select those dates output result should be in between selected dates can any one help me achieve this??
asked
1 answers
0

Hey Varaprasad,

 

If I understand right you're trying to filter data based on a start date user input and an end date user input. One way you could achieve this is add an on change event to the end date picker and if a start and end have been supplied you can retrieve your data by xpath and perform checks in the xpath for whether the created date of your data is greater than equal to the start date and less than equal to the end date. That should return your desired data set.

 

Hope this helps,

Austin

answered