我正在使用zend表单来创建一个单选按钮元素。如何水平对齐它们。
$this->addElement('radio', 'howYouFeel3', array(
'onClick' => 'showFields(this);',
'required' => true,
'multiOptions' => array(
'Positive' => 'Positive',
'negative' => 'Negative',
)
));
我尝试过添加:
'setSep' => '',
和
'separator' => '',
和
'setSeparator' => ''
但都没有效果。
也尝试过:
$howYouFeel3 = new Zend_Form_Element_Radio('howYouFeel3');
$howYouFeel3
->setLabel('How you Feel?')
->setSeparator('')
->addMultiOptions(array(
'positive' => 'Positive',
'negative' => 'Negative'
));
$this->addElement($howYouFeel3);
已经查看了源代码,似乎代码在ul中的li标签中创建了单选按钮,与其他情况相同的情况不同。这也许就是隔离器无效的原因。