You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 13, 2024. It is now read-only.
Instead of making post request with form action I want to post the formInput via emitting method.
I have done:
Trying to emit that method like:
EDIT:
mounted() {
this.$formEvent.$on("submit-form", value => {
console.log("FormEventBus");
console.log(value);
})
},
Tried above but did't work.
After click on submit button, it should call the "saveFormData" method.
I want to submit some custom field along with the form also had to send Auth-Token, so need the custom method to submit the data.
My previous approach was to have a custom button on the render page, the submit the data with that but that will not check validations on form renderer. I have to run multiple loops to make that happen. So now I think its better to have button from the form builder and call the method using emit-code.
Please enlighten me O great one!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I was looking at: http://vue-form-builder.sethphat.com/form-config
Instead of making post request with form action I want to post the formInput via emitting method.
I have done:
Trying to emit that method like:
EDIT:
Tried above but did't work.
After click on submit button, it should call the "saveFormData" method.
I want to submit some custom field along with the form also had to send Auth-Token, so need the custom method to submit the data.
My previous approach was to have a custom button on the render page, the submit the data with that but that will not check validations on form renderer. I have to run multiple loops to make that happen. So now I think its better to have button from the form builder and call the method using emit-code.
Please enlighten me O great one!
The text was updated successfully, but these errors were encountered: