Skip to content

Instantly share code, notes, and snippets.

@jblac
Created March 19, 2013 16:20
Show Gist options
  • Save jblac/5197546 to your computer and use it in GitHub Desktop.
Save jblac/5197546 to your computer and use it in GitHub Desktop.
$form = $this->createForm(new dateSelectType(), array('id'=>$id));
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('id', 'hidden')
->add('startDate', 'text',
array(
'attr' => array('class' => 'date'),
'required' => false,
'label' => "Select Date"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment