Open jmlopezo opened 3 years ago
@jmlopezo You can extend the library. You can add "isUnique" property into question and then write a code to make sure question value is unique. You can use survey.onValidateQuestion event.
survey.onValidateQuestion.add((sender, options) {
if(options.question.isUnique) {
//check that this question value is unique and set options.error if it is not
}
});
Thank you, Andrew
Great, Thanks @andrewtelnov
Are you requesting a feature, reporting a bug or asking a question?
question
What is the current behavior?
Is it possible to activate a custom validator via props? as isRequired
and...