简体   繁体   中英

Zend Framework 2 - Add Form class

I just can't find the answer... Is there a way to pass a CSS class to my open-form-tag ?

For example I want to create a form with the class ''form-horizontal''.

The docs say this:

// Render the opening tag
echo $this->form()->openTag($form);
// <form action="/contact/process" method="post">

But how adding the form class name?

Edit: I tried adding this to my Form.php but nothing happend...

public function getOptions()
{
    return array('class' => 'form-horizontal');
}

Thanks,

Ron

You can also use

$this->setAttributes(array(
    'action' => '/someurl',
    'method' => 'post',
    'class'  => 'form-horizontal'
));

Alright, the trick is to use setAttribute twice!

Do this in the Form.php:

$this->setAttribute('method', 'post');
$this->setAttribute('class', 'form-horizontal');

Reference Link is:

http://framework.zend.com/manual/2.0/en/user-guide/forms-and-actions.html

It works is using

$this->setAttribute('method', 'post');
$this->setAttribute('class', 'form-horizontal');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM