jordillonch / CrudGeneratorBundle

This Symfony2 bundle aims to be the bundle that you are looking for create a nice CRUD with pagination, filter, translation and Twitter bootstrap 2.2.2 features.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unable to change the year range on a "Date" dropdown auto-generated

jaznow opened this issue · comments

I've been unable to find the way of changing the year range, by default its 5 years before today, and 5 years after today.
I sould be able to change the years displayed on a autogenerated dropdown menu for "date" datatype.

We are using "plain Symfony2 forms". Just edit your form type class generated by the bundle and add something like:

->add('myDateField', 'date', array(
                'years' => range(Date('Y') - 20, date('Y'))
            ))