Hi All,
I'm attempting to escape the label used in conjunction with some radio
buttons on a form I'm building. Currently, I am setting the following
decorator:
public $radioDecorators = array(
array('ViewHelper'),
array('HtmlTag', array('tag' => 'dd')),
array(
array('labelDtClose' => 'HtmlTag'),
array(
'tag' => 'dt',
'closeOnly' => true,
'placement' => 'prepend'
)
),
array('Label', array( 'escape' => false)),
array(
array('labelDtOpen' => 'HtmlTag'),
array(
'tag' => 'dt',
'openOnly' => true,
'placement' => 'prepend',
'class' => 'radio'
)
)
);
Is there a reason that this should behave in the same why that the
Select button does (with respect to the decorator)?
Thanks in advance.
--
Kieran Hall