0
こんにちは私はVaadin 8を使用していて、ユーザー入力用にVaadins DateFieldを使用しようとしています。Vaadin DateField検証で検証エラーが表示されない
private DateField date = new DateField("Date of Birth");
...
binder.forField(date).asRequired("Some Warning").withValidator(new DateValidator()).bind(Person::getDateOfBirth, Person::setDateOfBirth);
DateValidatorは、Personが18歳以上であることを確認します。
DatePickerを使用すると、DateFieldに統合されているという問題があります。Personが18歳未満の場合、検証エラーはユーザーに表示されません。ただし、日付を入力してEnterキーを押すか、入力フィールドに検証エラーが表示されます。
入力がDatepickerを介して与えられたときに検証エラーが表示されるようにするにはどうすればよいですか?