16

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?

My decorators are:

private $radioDecorators = array(
    'Label',
    'ViewHelper',
    array(array('data' => 'HtmlTag'), array('tag' => 'div', 'class' => 'radio')),
    array(array('row' => 'HtmlTag'), array('tag' => 'li')),
);
Richard Knop
  • 81,041
  • 149
  • 392
  • 552

3 Answers3

51

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('');
  }
}
ReactiveRaven
  • 7,203
  • 2
  • 29
  • 38
Edward Dale
  • 29,597
  • 13
  • 90
  • 129
3

use options as follows

array("listsep" => ' ')

This will make radio seperation by ' '

Raj
  • 22,346
  • 14
  • 99
  • 142
1

Use the Zend_Form_Element_Radio::setSeparator($separator) method:

e.g.

$element->setSeparator('');

The separator defaults to '\<\br />' as shown by getSeparator().

hobodave
  • 28,925
  • 4
  • 72
  • 77