Is it wrong to cover a form with the "Saving…" notification?
Some forms could take a while to save (internet speed, slow data validation...) and there is the need to show that the system is saving the data while locking the form from further edits.
- Is there a better pattern among the following two ideas?
- Are there differences between mobile and desktop on this?
Option 1 - notification above form
- Display a notification like "Saving" (with a spinner) covering the entire form. (This would lock the form from further editing while saving. Also the buttons get disabled)
- Then the notification can turn into "Saved" (with big green checkmark)
- Dismiss modal/close page
Option 2 - small notification inline with button
- Use a "Saving" message inline with the saving button (while disabling form and buttons)
- Confirm that the form is saved replacing the notification with a "Saved"
- Dismiss modal/close page