After updaing to v7 my simple list and date range choices are not displaying
The simple list and the date range choices are not displaying after the v7 update anybody else having this issue.
Best Answer
-
Geoff_Ross Cireson Consultant O.G.Yes, that is the same bug as in the other thread that @Adrian_Paech mentioned.
In the interim there is a workaround you can manually apply in the app.controls.js:
Line 334 Change: var str = "{" + daysOffset + "}"; var daysValue = JSON.parse(JSON.stringify(eval("(" + str + ")"))).days; date.setDate(date.getDate() + parseInt(daysValue)); To: date.setDate(date.getDate() + parseInt(daysOffset)); This means removing the first 2 lines and adjusting the third.
This means removing the first 2 lines and adjusting the third.
Geoff
5
Answers
Not exactly sure if it's the same issue, but For the portal (v7 issue) please attempt the workaround posted on the following link. https://community.cireson.com/discussion/1451/bugs-when-using-existing-request-offerings-from-v6-0-3-in-v7-0-scsm-2016-of-the-portal#latest
For the console issues I'm not sure (assuming you have upgraded to the latest versions of all console apps)?
Cheers,
Adrian
Cool Good to hear.
Regards,
Adrian
In the interim there is a workaround you can manually apply in the app.controls.js:
This means removing the first 2 lines and adjusting the third.
Geoff