Ross Riley
Ross Riley
Unfortunately at the moment Symfony Forms doesn't support a telephone number type, the closest you can get is: ``` phone: type: number ``` I have a feeling it's not customisable...
This was indeed a change in Bolt 3.3 itself that changed to a whitelist for twig tags. We'll get working on a fix. thanks for the report.
sure, can you just re-target this PR to 4.2 and not master, then I'll merge and tag.
Since BoltForms will load in any of the default Symfony validator constraints you should be able to do this something like: ``` fields: upload: type: file options: required: true label:...
Have a look at this section in the docs: https://github.com/bolt/boltforms/blob/4.1/doc/fields.md#choice-types See the usage of the `data` attribute. Hopefully this is what you are after.
Correct, using this already myself too. https://github.com/bolt/boltforms/blob/4.2/src/Submission/Handler/ContentType.php#L106-L117
This one could be a bit of a bug since I'm not sure testing the `email` processor is always the best idea The crux is that something has gone wrong...
Yes, if you read those docs carefully it says that this only applies if you've set your widget to `choice` I've tested it with this setup: ``` birthday: type: date...
yes, I've tried it on all and it only goes through on `widget: choice` if you use `widget: single_text` then you can set the placeholder on the `attr` array, if...
It should work if you define `multiple: true` on the field configuration. If it isn't working can you paste your form configuration and we can investigate.