I have created a simple form using vaadin designer, have created a textfield by applying double range validator but the validation is not working.Accepting values beyond defined range.
Here is my sample code.
angleofrotation.addValidator(new DoubleRangeValidator(“value have to be in between 0.0 to 359.9”,0.0,359.9))
It is not very obvious that you need to make a custom converter for Range to work. This should be all in one functionality.
Your write less code if you just make your custom validator.