Hi,
I've been recently upgrading SurveyJS in our application from 1.0.46 to 1.1.0, which I've noticed that when loading survey.data from localstorage and a question that is loaded from an URL is used to show and hide page visibility that it keeps reseting the page to the first page.
Example
https://plnkr.co/edit/EoLmxHK5phlxesTi3Zle?p=preview
This survey should remember what page you are on, and what you have answered, but it forgets the page, so first select any answer on page 1, then goto the next page; if you then reload/refresh the page it takes you back to page 1 and not page 2.
original issue
Originally I thought this was only to do with custom widgets, so in our custom widgets which get it's data from an API that the call back for choices changed 'choicesChangedCallback' no longer works or has disappeared, are we still able to listen for this callback?
I've tried to using 'registerFunctionOnPropertyValueChanged' listening for 'visibleChoices' instead but with no luck.
Example -
question.choicesChangedCallback = function() { render(question, el);};
Any help will be much appreciated
Thank You.