gastoncs
gastoncs

Reputation: 117

ZF2 add styles to elements

Hi is there a way to add style to a form element, besides adding a class?

    $this->add(array(
        'type' => 'Zend\Form\Element\Textarea',
        'name' => 'notas',
        'options' => array(
            'label' => 'Notas',
            'label_attributes' => array(
                'class'  => 'label-wrapped'
            ),
        ),
    ));

thanks!

Upvotes: 1

Views: 306

Answers (1)

gastoncs
gastoncs

Reputation: 117

This is the way, But I still don't know how to add several styles

$this->add(array(
    'type' => 'Zend\Form\Element\Textarea',
    'name' => 'notas',
    'attributes' => array(
        'style'=>'width:100px',
    ),
    'options' => array(
        'label' => 'Notas',
        'label_attributes' => array(
            'class'  => 'label-wrapped'
        ),
    ),
));

Upvotes: 1

Related Questions