James Lucas

Results 127 comments of James Lucas

This would require the field attributes inputs to have no name attribute set, if this was occurring the whole formBuilder stage is corrupted. If a reproducible test case can be...

Thoughts and questions on this enhancement. 1. Add option wrapperClass -> Sets additional classes to the rendered-form - What benefit do we get adding classes to div.rendered-form instead of targeting...

Was implemented in PR https://github.com/kevinchappell/formBuilder/pull/1168

Auto detection/markup of URLs is not part of the controls. You can insert a link via adding HTML content into the paragraph fieldd eg ```html Google ```

There are various ways to make the links which could be done via a custom template for paragraph https://stackoverflow.com/questions/1500260/detect-urls-in-text-with-javascript

You'll need to do this with a custom control. In the control you create a hidden input which will store the consolidated value. Then render the 3 fields you want....

Firefox, Chrome and Safari leave a trailing `` tag in contenteditable fields. Current workaround is to attach to the change event of the input/textareas and remove the trailing ``

I know this is an old ticket, however with recent updated to custom controls you can override this behaviour with a template You could hook into the build stage and...

Can you please describe what is not working for you? Your test case `"[{"type":"select","required":false,"label":"Select","className":"form-control","name":"select-1616509735994","values":[{"label":"Test1","value":"Test1","selected":false},{"label":"Test2","value":"Test2","selected":false},{"label":"Test3","value":"Test3","selected":false}]},{"type":"text","required":true,"label":"Text Field","className":"form-control","name":"text-1616509738788","subtype":"text"},{"type":"textarea","subtype":"tinymce","required":false,"label":"Text Area","className":"form-control","name":"textarea-1616509740435"},{"type":"text","subtype":"datetime-local","required":false,"label":"Date Time","className":"form-control","name":"text-1616509741416"}]"` is rendering fine. You have no values set to be restored

This WIP PR allows loading version 4, 5 and 6 of TinyMCE. If you want a later version load it as a `` tag in your HTML (eg. ` `)...