Randall Knutson
Randall Knutson
Are you using CSP or anything that could be blocking those urls? You can also include quill source code manually on the page and it will skip loading from those...
Also to clarify, this is something we are planning on making easier in the future. Adding a limit to the querystring will always work but we are trying to figure...
What you can do is disable the default submission events by setting the url={formUrl} instead of src={formUrl}. Then listen for the onSubmit event and send the data wherever you would...
Can you provide a form or some steps to reproduce this?
The token is stored in localStorage as formioToken. When sent to servers it is at headers['x-jwt-token']. You can modify this by creating a formio.js plugin that intercepts requests and changes...
This is currently a feature that is in our backlog to make this easy to accomplish. We have built this into applications already though. The way to do this is...
You probably need to include either the formio.css file from react-formio or the flatpickr css. Those require some additional css from just bootstrap.
I'm not sure what is causing this. by default our forms do not show validations until they are marked as "dirty", meaning that a user has interacted with them or...
The form instance has a "resetValue()" function and a "setPristine(true)", both of which will reset the form back to how it originally was. https://github.com/formio/formio.js/blob/master/src/Webform.js#L1019
When you use the Form component, you can set a ref on it and get a reference to the formio react component. From there you should have access to formio.instance.submit...