Zend框架单选按钮被显示在列(每行一个选项)。 我怎样才能从标记删除BR标签,让所有的无线模块留在一条线?
我的装饰是:
private $radioDecorators = array(
'Label',
'ViewHelper',
array(array('data' => 'HtmlTag'), array('tag' => 'div', 'class' => 'radio')),
array(array('row' => 'HtmlTag'), array('tag' => 'li')),
);
你需要调用Zend_Form_Element_Radio对象的setSeparator方法,传递'。 下面是一个例子在这里 :
<?php
class CustomForm extends Zend_Form
{
public function init()
{
$this->setMethod('post');
$this->setAction('user/process');
$gender = new Zend_Form_Element_Radio('gender');
$gender->setLabel('Gender:')
->addMultiOptions(array(
'male' => 'Male',
'female' => 'Female'
))
->setSeparator('');
}
}
使用Zend_Form_Element_Radio :: setSeparator($分隔符)方法:
如
$element->setSeparator('');
隔板默认为 '\ <\ BR />' 如图getSeparator()。