views:

2503

answers:

3

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')),
);
+6  A: 

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('');
  }
}
scompt.com
+1  A: 

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

e.g.

$element->setSeparator('');

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

hobodave
+1  A: 

use options as follows

array("listsep" => ' ')

This will make radio seperation by ' '

Thanks Hardik