Hi JET Experts,
I have a search page with a gantt chart implementation. I would like to set the projectStartDate and projectEndDate on search. The user will select the dates on which he would like to see the tasks. I tried setting it in my code but sadly, it did not work. The gantt continues to show the initial value of the projectStartDate and projectEndDate.

JS code:
self.filterData = function (model, event) {
self.projectStartDate = new Date(self.inputDate()).toISOString();
self.projectEndDate = new Date(self.inputDate() + 1).toISOString();
.....
}
Can someone please help?
Regards,
Sarah