Is it possible to disable autosave in the builder and require users to manually save? #3
-
I see in the config you can change the delay before autosave occurs, but is is possible to make saving a manual operation? I would only like to save the form state to the backend when the user explicitly wants to. |
Beta Was this translation helpful? Give feedback.
Answered by
adamberecz
Nov 18, 2023
Replies: 1 comment
-
The built-in save function will only save the changes to the local storage and trigger the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
djkunkel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The built-in save function will only save the changes to the local storage and trigger the
@save
event. You can add a Save button somewhere outside the builder that triggers the actual saving. You can reach the builder object withbuilder$.builder
after assigning a ref to<VueformBuilder ref="builder$">
.