disable form validating

Hello! Is it possible to submit form without validation?
For example, I have two submit buttons, first should submit with provided validation logic, and second button should submit the same form without validation?

No, it is not possible. We have a such feature in Flow, but it is not easy to make similar thing in Hilla. This is mostly due the fact that Validation is based on JSR-303. So if you submit un-validated form with validation errors, the backend will throw exception anyway.

I implemented client validation only. I guess I can use two binders and pass binder.value to another binder without validation.

That is an interesting idea that did not pop into my mind. Tell us if it actually works.

It definitely works!

this.savingBinder.read(this.binder.value);