Vaadin team:
Please see the method setReadonly(...)
in the DatePicker
. It doesn’t match with standard setReadOnly(...)
in other field components.
Also, standard public
methods are not defined: setReadOnly(...)
and isReadOnly()
DatePicker (and other fields) has internally used setReadonly(…) generated method (should be protected) and via HasValueAndElement there is inherited setReadOnly(…) which is the method you actually will use.
Ok, understood. Thanks.