Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Gantt chart: Set projectStartDate and projectEndDate on search

Sarah JustinaMay 24 2018 — edited May 25 2018

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.

gantt.png

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

This post has been answered by John JB Brock-Oracle on May 24 2018
Jump to Answer
Comments
Post Details
Added on May 24 2018
2 comments
169 views