Is there any Way to Disable Next Button untill all the is required not fill out on survey ?
How to Enable Next Button When all the is Required is filled out ?
Answers approved by surveyjs Support
Unfortunately, there is no pre-build functionality for this.
You may implement it by yourself, by using the custom navigation and update the "Next" button on the onValueChanged event.
survey.currentPage.questions property will return all questions. You may use the question.isRequired property (true if required) and question.isEmpty() function (returns true if the question is empty).
Thank you,
Andrew
SurveyJS Team
Other Answers
can u provide a small example on plunker
Comments
(1)