Hello,
I'm trying to pass in start and end date using visualize.js. its seems to be almost working expect one thing. It is not taking the end date as a parameter. This is what im passing
report.params({"P_REPORT_DATE_START" : [ document.getElementById('tabView:startDate_input').value ]},{"P_REPORT_DATE_END" : [document.getElementById('tabView:endDate_input').value]}).run();
But when it is making a post request it is only take the start date as a parameter.
idk why this is happening it would be really helpful if someone can point me to a solution.
0 Answers:
No answers yet
i got it to work. i had to pass it like this
report.params({"P_REPORT_DATE_START" : [ document.getElementById('tabView:startDate_input').value ],
"P_REPORT_DATE_END" : [document.getElementById('tabView:endDate_input').value]}).run();