Trying to show the required text error onBlur when a input field changes focus. We tried both
TypeScriptsurveyModel.checkErrorsMode = 'onValueChanged'
as well as tried the manual way:
TypeScriptsurveyModel.onValueChanging.add((survey, options) => {
if (!options.question) return
options.question.hasErrors(true);
}
However because the initial value is empty, and remains empty after you unfocus, no onValueChanged event is fired. Is there another event or something similar we can do to show the isRequired error message?
Thanks