forms - How Can I get autofocus on the first element (buildform) symfony -


in topictype class, 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 autofocus on first field "title", when display form?

$builder->add('title', 'text', array(     'attr' => array(         'autofocus' => true         )     ); 

Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

how to prompt save As Box in Excel Interlop c# MVC 4 -

xslt 1.0 - How to access or retrieve mets content of an item from another item? -