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
<script>
import { Form } from '@formio/vue';
import schema from '@/services/input' // this file has the above schema
export default {
components: {
Form,
},
data() {
return {
formSchema: "",
options: {}
};
},
async created() {
this.formSchema = schema;
}
}
</script>
<template>
<div>
<Form :form="formSchema"></Form>
</div>
</template>
When using Quill editor instead of CKEditor you cannot format the data but clicking on Save button will update that data in the grid. In the console you get the below error when you try to format the data using Quill editor
The text was updated successfully, but these errors were encountered:
Environment
Steps to Reproduce
Expected behavior
The Data should be persisted to the grid on clicking of Save button
Observed behavior
The control renders fine but when data is entered and clicked on Save button of the Edit Grid, getting the below error in console
This is the form schema
Here is the vue component
When using Quill editor instead of CKEditor you cannot format the data but clicking on Save button will update that data in the grid. In the console you get the below error when you try to format the data using Quill editor
The text was updated successfully, but these errors were encountered: