Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an entity in a form which has a composite key (the type field below). It renders as a select box.

 $builder
                ->add('firstName', null, array('label' => 'First Name'))
                ->add('lastName', null, array('label' => 'Last Name'))
                ->add('room', null, array('label' => 'Room'))
                ->add('unit', null, array('label' => 'Unit'))
                ->add('id', 'hidden')
                ->add('type')
        ;

/**
     * @var integer $id
     *
     * @ORM\Column(name="id", type="bigint")
     * @ORM\Id
     */
    private $id;

    /**
     * @ORM\Id
     * @ORM\ManyToOne(targetEntity="Facility")
     * @ORM\JoinColumn(name="facility_id", referencedColumnName="id")
     */
    private $facility;

Once I submit this form and go back to edit, the select="selected" value is not automatically set on the option chosen. It defaults to the first option. If I remove the composite key and just have a primary integer key, the select box works fine.

Any suggestions on how to fix this issue?

UPDATE: if I add $entity->getType()->getName() in the controller before calling createForm() the correct value is selected in the box. Looks like it isn't autoloading the type selection that's passed to the form builder.. anyone know why?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.