Travis Tidwell
Travis Tidwell
Try using the API urls instead of the application urls, as I described in https://github.com/formio/formio-cli/issues/27
The "U" that it is complaining about is that the server is responding with "Unauthorized" which makes me believe that your API keys are not correct in one of the...
There should have been a reverse compatibility between 3x and 4x for data processing. We are interested in any examples which this does not seem to be the case. You...
Can you please write a test for this case so I can understand what this is fixing?
Looks like it isn't... https://github.com/formio/formio.js/blob/master/src/WebformBuilder.js#L1249 I am curious if this would work if we just sent this string through the translate function like so? ``` this.t('API Key is not unique')...
Hello everyone. I am actively working to get these libraries released and synced. I appreciate your patience while I work on all the latest updates to our core renderer and...
This would be part of the component JSON that is injected into the renderer. I am not familiar with how the custom component stuff works, but from lookin at https://github.com/formio/angular-formio/blob/master/projects/angular-formio/src/custom-component/create-custom-component.ts#L43...
As of right now number formatting uses the browser locale to perform the number internationalization vs. the passed in configuration from the renderer for translations, so this currently works as...
Try to use 3.4.0
Try adding this to your own application. ```js const addAce = Formio.Components.components.component.addAce; Formio.Components.components.component.addAce = function(element, settings, onChange) { return addAce.call(this, element, settings, onChange).then(function(editor) { editor.require('ace/ext/language_tools'); return editor; }); }; ```