Binder and invalid inputs

I would like to save all valid inputs of a form even if there are invalid inputs as well in the same form.
I am using the Vaadin Flow Binder. What is best practice to achieve this in Vaadin Flow?
To be more accurate: i want the binder to write the valid inputs to the backing bean and skip the invalid ones.

Hi Hans,

If you use binder.setBean instead of binder.readBean, all inputs will go directly to the beans. However, if you are using a validator or converter with the binder, i dont know if it will be set or not (assuming it is invalid).