Well, I need to validate a textarea field in an application using thymeleaf, to limit the maximum amount I've already achieved, but I do not know how to validate the minimum amount.
Well, I need to validate a textarea field in an application using thymeleaf, to limit the maximum amount I've already achieved, but I do not know how to validate the minimum amount.
I was able to add minlength="" to the amount I needed that worked.
<textarea class="form-control" id="inputAnswer" placeholder="Enter Question" th:field="*{answer}" minlength="50" maxlength="255">
<span th:if="${#fields.hasErrors('answer')}" th:errors="*{answer}" th:class="help-block" />
</textarea>