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.
Although the documentation does make a reference of the validationErrorShowAlert option, any "falsy" values suplied for it will be ignored by the plugin. Effectively, this means the error alert can not be turned off.
To reproduce, try the following while installing the plugin:
import{VueFormBuilderPlugin}from'v-form-builder';Vue.use(VueFormBuilderPlugin,{// This will be ignored due to a bug in VueFormBuilder plugin.validationErrorShowAlert: false,});
A quick-n-dirty workaround would be to explicitly set this option before using form renderer component inside a Vue component. This can be done via exposed $form property on the Vue instance. For example:
@ComponentexportdefaultclassFormRendererextendsVue{created(){// Disable built-in validation error alert in VueFormBuilder.this.$form.validationErrorShowAlert=false;}}
The text was updated successfully, but these errors were encountered:
Although the documentation does make a reference of the
validationErrorShowAlert
option, any "falsy" values suplied for it will be ignored by the plugin. Effectively, this means the error alert can not be turned off.To reproduce, try the following while installing the plugin:
A quick-n-dirty workaround would be to explicitly set this option before using form renderer component inside a Vue component. This can be done via exposed
$form
property on the Vue instance. For example:The text was updated successfully, but these errors were encountered: