-
Hi all, I send the poll answers to my backend which also validates the request. My server-side validation is more strict for some question types than the included one. I want to show these validation errors. Currently, I have managed this:
This shows the validation messages as the description of the questions. But, I want to hook this up to the built-in validation in order to show the validation errors in red ;) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi @Hannoma, the ability to extend validation and add your own validation methods (including asynchronous ones) is something that's on the roadmap but isn't implemented for now (we'll probably add a |
Beta Was this translation helpful? Give feedback.
Hi @Hannoma,
the ability to extend validation and add your own validation methods (including asynchronous ones) is something that's on the roadmap but isn't implemented for now (we'll probably add a
validate
method toQuestionModel
where you'll be able to define custom validation logic per question).