You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Define a class with a class level validator that report a violation at the level of a given field.
Show an FXForm with such a bean.
Enter an invalid value in that field (let's say "4")
Enter a new value in that field that is still invalid but that will not trigger a model update since the value is the same, i.e. "4." (note the '.' after the 4)
FXForm performs a validation at field level and clear existing contraints but does not perform a new full class level validation, thus the constraint violation from the class level validator on this field is not shown anymore.
The text was updated successfully, but these errors were encountered:
Define a class with a class level validator that report a violation at the level of a given field.
Show an FXForm with such a bean.
Enter an invalid value in that field (let's say "4")
Enter a new value in that field that is still invalid but that will not trigger a model update since the value is the same, i.e. "4." (note the '.' after the 4)
FXForm performs a validation at field level and clear existing contraints but does not perform a new full class level validation, thus the constraint violation from the class level validator on this field is not shown anymore.
The text was updated successfully, but these errors were encountered: