In my TopicType class, I used:
public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('title', 'text') ->add('content', 'ckeditor', array( 'label' => 'Contenu', 'config_name' => 'my_custom_config', 'config' => array('language' => 'fr'),)) ->add('save', 'submit') ; }
How can I get autofocus in my first "title" field when I show the form?
source share