tsv2013
tsv2013
@tDuy Thank you for the additional info. I'm working with this issue right now. It duplicated in this thread also - https://surveyjs.answerdesk.io/ticket/details/t3768/multiple-forms-having-nouislider-results-in-exception-nouislider-10-1-0-slider-was
I've patched this function and your plunker now works ok for me: ```JS function getNoUiSlider(element) { if (!element) return null; // I've added this check for the case if the...
I've added original nouislider implementation (https://github.com/surveyjs/widgets/blob/master/src/nouislider.js) into your plunker (https://embed.plnkr.co/plunk/04Ni454pVilIqoTy) and also got the "Slider was already initialized. " error. At this moment I've got the following. For some reason...
For now you can fix the "getNoUiSlider" function as I wrote. On our side we'll investigate the issue.
I'm not sure, but this https://github.com/surveyjs/survey-library/issues/1998 can be related. Because in your sample you are changing the pages. I leave it here as a note.
I can't say anything without a live sample illustrating the issue.
You can use the "default" property of the metadata: ```JS Serializer.addClass( "page", [ { name: "navigationButtonsVisibility", default: "inherit", choices: ["inherit", "show", "hide"] }, { name: "questionsOrder", default: "default", choices: ["default",...
I've added these options to emotion widget The functionality will be available in the nearest update
At this moment there is no such an option for the noUiSlider custom widget. We need to implement it in the widget source code - https://github.com/surveyjs/widgets/blob/master/src/nouislider.js#L80-L90 I've added this enhancement...