显示Zend_Form_Element_Radio在一行(Display Zend_Form_Ele

2019-06-26 11:48发布

Zend框架单选按钮被显示在列(每行一个选项)。 我怎样才能从标记删除BR标签,让所有的无线模块留在一条线?

我的装饰是:

private $radioDecorators = array(
    'Label',
    'ViewHelper',
    array(array('data' => 'HtmlTag'), array('tag' => 'div', 'class' => 'radio')),
    array(array('row' => 'HtmlTag'), array('tag' => 'li')),
);

Answer 1:

你需要调用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('');
  }
}


Answer 2:

使用选项如下

array("listsep" => ' ')

这将使无线电法分离'



Answer 3:

使用Zend_Form_Element_Radio :: setSeparator($分隔符)方法:

$element->setSeparator('');

隔板默认为 '\ <\ BR />' 如图getSeparator()。



文章来源: Display Zend_Form_Element_Radio on one line