2016-06-23 6 views

Antwort

1

Wenn in dem Konstrukt Verfahren ein Element hinzugefügt wird, können Sie

'autofocus'=>'true' 

Innerhalb der Attribute dieses Elements verwenden. Hier stelle ich den Code meines "email" -Elements dar:

$this->add(array(
     'name' => 'email', 
     'type' => 'Zend\Form\Element\Email', 
     'options' => array(
      'label' => 'Email:' 
      ), 
     'attributes' => array(
      'type' => 'email', 
      'required' => true, 
      'placeholder' => '[email protected]', 
      'class' => 'form-control', 
      'tabindex' =>'1', 
      'id'=>'email', 
      'autofocus'=>'true' 
      ) 
     )); 
+0

Daraus schließe ich auch, dass wir $ element-> setAttribute ('autofocus', true); – srayner

+0

Ich habe dies direkt in die "Ansicht" versucht und es funktioniert: $ emailElement = $ this-> form1-> get ('email'); $ emailElement-> setAttribute ("autofocus", "true"); – Conti