Skip to content Skip to sidebar Skip to footer

Add Choicetype Options In Symfony Form On Non Entity Class

I have a Symfony form submitted by Ajax request. This form contains 2 fields : a date (datepicker) and a number of days (a choiceType). I can't initialize the number of days when t

Solution 1:

you can disable form validation by calling $builder->get('nbJours')->resetViewTransformers(); after you have added the field


Post a Comment for "Add Choicetype Options In Symfony Form On Non Entity Class"