Zend driving me insane this afternoon, I need to add a inside the tag:
<label><span>Some Text</span></label>
Here is my Form decorators but it will not work for me at all it puts the before the first label:
$checkbox->setDecorators(array(
'ViewHelper',
array(array('data' => 'HtmlTag'),
array('tag' => 'div', 'class' => 'myspans')),
array('Label', array('tag' => 'span', 'class' => 'sdfdsf'))
));
Any ideas its killing me!?
J
EDIT:
I am not sure if this effects it but its basically creating lots of checkboxes from an array, so its in a foreach loop:
foreach($software as $prev => $p)
{
//$checkbox->setLabel($p);
$checkbox->addMultiOption($prev,$p);
$checkbox->setAttrib('id', 'checkbox');
$checkbox->setSeparator(' ');
$checkbox->setDecorators(array(
'ViewHelper',
array(array('data' => 'HtmlTag'),
array('tag' => 'div', 'class' => 'myspans')),
array('Label', array('tag' => 'span', 'class' => 'sdfdsf'))
));
}