I want to make a custom form field in symfony2 named daterange, which will extends the default symfony date type form field and take date range(start date and end date) into two different text-box.
|
|
||||
|
|
Cause I don't like twig template engine this example only for PHP templating What you need is to make:
services:
form.type.daterange:
class: TestBundle\Form\Extension\Core\Type\DateRangeType
tags:
- { name: form.type, alias: daterange }
framework:
templating:
form:
resources:
- 'TestBundle:Form'
And for more widget customization as nefo_x said check form customization. |
||||
|
|
|
In order to do that, you need to add the following lines into app/config/config.yml
then in src/Your/SuperBundle/Resources/views/Form/fields.html.twig:
For additional reference please read form customization of Symfony 2.0 book. |
|||
|
|
There is a good entry in official cookbook on creating custom field type |
|||
|
|