I have a form with 2 buttons: Save and Submit. If the user hits Save I want to bypass my validations, but still update the underlying model objects so i can persist them in a partially completed state, then have the full validation run when the Submit button is clicked.
If I call setDefaultFormProcessing(false) then the underlying model isn't updated either, right? This seems like a pretty common issue, has anyone else implemented a genius way of dealing with save/submit logic? Thanks, -Clint
