<i id='7yiCN'><tr id='7yiCN'><dt id='7yiCN'><q id='7yiCN'><span id='7yiCN'><b id='7yiCN'><form id='7yiCN'><ins id='7yiCN'></ins><ul id='7yiCN'></ul><sub id='7yiCN'></sub></form><legend id='7yiCN'></legend><bdo id='7yiCN'><pre id='7yiCN'><center id='7yiCN'></center></pre></bdo></b><th id='7yiCN'></th></span></q></dt></tr></i><div id='7yiCN'><tfoot id='7yiCN'></tfoot><dl id='7yiCN'><fieldset id='7yiCN'></fieldset></dl></div>
      • <bdo id='7yiCN'></bdo><ul id='7yiCN'></ul>

    1. <tfoot id='7yiCN'></tfoot>

      <legend id='7yiCN'><style id='7yiCN'><dir id='7yiCN'><q id='7yiCN'></q></dir></style></legend>

        <small id='7yiCN'></small><noframes id='7yiCN'>

      1. 在一行上显示 Zend_Form_Element_Radio

        时间:2023-10-03

            <tfoot id='4xHjo'></tfoot>
            • <bdo id='4xHjo'></bdo><ul id='4xHjo'></ul>

              <small id='4xHjo'></small><noframes id='4xHjo'>

              • <i id='4xHjo'><tr id='4xHjo'><dt id='4xHjo'><q id='4xHjo'><span id='4xHjo'><b id='4xHjo'><form id='4xHjo'><ins id='4xHjo'></ins><ul id='4xHjo'></ul><sub id='4xHjo'></sub></form><legend id='4xHjo'></legend><bdo id='4xHjo'><pre id='4xHjo'><center id='4xHjo'></center></pre></bdo></b><th id='4xHjo'></th></span></q></dt></tr></i><div id='4xHjo'><tfoot id='4xHjo'></tfoot><dl id='4xHjo'><fieldset id='4xHjo'></fieldset></dl></div>
                • <legend id='4xHjo'><style id='4xHjo'><dir id='4xHjo'><q id='4xHjo'></q></dir></style></legend>

                    <tbody id='4xHjo'></tbody>
                  本文介绍了在一行上显示 Zend_Form_Element_Radio的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  Zend Framework 中的单选按钮显示在一列中(每行一个选项).如何从标记中删除 br 标签,以便所有单选选项都在一行中?

                  The radio buttons in Zend Framework are displayed in a column (one option per line). How can I remove the br tag from the markup so that all radio options stay in one line?

                  我的装饰者是:

                  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 方法,并传递它 ''.这是此处的示例:

                  You need to call the setSeparator method on the Zend_Form_Element_Radio object, passing it ''. Here's an example from here:

                  <?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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何向 Zend Framework 2 添加自定义视图助手 下一篇:PHP - if 语句中的倒序

                  相关文章

                  最新文章

                • <small id='owQ0y'></small><noframes id='owQ0y'>

                    1. <i id='owQ0y'><tr id='owQ0y'><dt id='owQ0y'><q id='owQ0y'><span id='owQ0y'><b id='owQ0y'><form id='owQ0y'><ins id='owQ0y'></ins><ul id='owQ0y'></ul><sub id='owQ0y'></sub></form><legend id='owQ0y'></legend><bdo id='owQ0y'><pre id='owQ0y'><center id='owQ0y'></center></pre></bdo></b><th id='owQ0y'></th></span></q></dt></tr></i><div id='owQ0y'><tfoot id='owQ0y'></tfoot><dl id='owQ0y'><fieldset id='owQ0y'></fieldset></dl></div>
                        <bdo id='owQ0y'></bdo><ul id='owQ0y'></ul>
                    2. <tfoot id='owQ0y'></tfoot>
                      <legend id='owQ0y'><style id='owQ0y'><dir id='owQ0y'><q id='owQ0y'></q></dir></style></legend>