Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I found a little solution to my problem. It's to put a 'required' => false, in the field of the formType. But before, it was working without that... so I ask. If there is a problem or it's normal?

Yesterday, I upgrated my Sf2.1 project with composer.phar

$ php ../composer.phar update

Now I'm using this composer.json

{
    // ...
    "require": {
        "symfony/symfony": "2.1.*",
        // ...
    },
    "scripts": {
        // ...
    },
    "config": {
        "bin-dir": "bin"
    },
    "minimum-stability": "dev",
    "extra": {
        "symfony-app-dir": "app",
        "symfony-web-dir": "web"
    },
    "repositories": [
        // ...
    ]
}

For example in my Entity File:

/**
 * @var date $deliveryDate
 * 
 * @ORM\Column(name="deliveryDate", type="date", nullable=true)
 */
private $deliveryDate;

Then in my FormType

        ->add('deliveryDate', 'date', array(
            'widget' => 'single_text',
            'label' => 'Date de livraison',
            'input' => 'datetime',
( solution: 'required' => false, )
            'format' => 'dd/MM/yyyy',
            'attr' => array('class' => 'datepicker'),
         ))

As you understood, the problem isn't in the Database part but, in the FormPart.

share|improve this question
Seems pretty normal. Happens to me all the time. I always have to manually set required as false so it doesn't trigger the html5 required function. – Hyunmin Kim Aug 31 '12 at 16:00

1 Answer

Symfony 2.1 invokes the HTML5 required functionality by default. You'll have to set required to false on every field you want to be optional.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.