Travis Tidwell
Travis Tidwell
If you are writing a custom component, then I would personally just extend the SelectComponent and then override the ```loadItems``` method. https://github.com/formio/formio.js/blob/master/src/components/select/Select.js#L335 Something like this maybe. ```js class MyCustomSelect extends...
This is probably because the custom value is expected to be synchronous and you are making an API call to make it synchronous. It may be the case that on...
This is great! We will definitely include it and thank you for writing tests.
We added this for our Monday planning to get this prioritized. Thanks.
This shows how to extend a component. https://formio.github.io/formio.js/app/examples/customcomponent.html
Add a ```hidden: true``` property to them.
I can see that it falls into an infinite loop. Seems like a bug we need to look into.
Nobody from Form.io is actively working on this so we would GREATLY appreciate your contribution!
[BUG] Uncaught TypeError: Cannot read property 'getUndoManager' of null at w.endOperation (ace.js:1)
theme-snow is not a valid theme for Ace. I believe this is probably caused by default wysiwyg settings (which were originally for the Quill editor) are somehow getting applied to...
If you take a look at the payload being sent to the ```onChange```, there is a property called ```modified```. Try the following. ``` onChange = (e) =>{ if (e.modified) {...