Is there any decorator shizzle or whatever to put HTML in form labels??
I have the following (and I have put escape => false all over the place)
but it outputs it as & lt ;span class=& quot ;icon- blah blah blah:

$values = array('icon-trash', '<s pan class="icon-trash"></s pan>'>);

$form->add(array(
        'name' => 'icon',
        'type' => 'Zend\Form\Element\Radio',
          'escape' => false,
        'attributes' => array(
          'type'  => 'radio',
            'escape' => false,
        ),
        'options' => array(
          'label' => 'icoon',
          'label_attributes' => array(
            'class' => 'sub-element radio',
            'escape' => false,
          ),
          'value_options' => $values,
        ),
      ));


in the view:

echo $this->form()->openTag($form);

  foreach ($form as $el) {
    $elNaam = $el->getName();
    $element = $form->get($elNaam);
    echo $this->formRow($element);
  }

  echo $this->form()->closeTag($form);



--
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/Please-no-HTML-escape-form-label-tp4658168.html
Sent from the Zend Framework mailing list archive at Nabble.com.

-- 
List: fw-general@lists.zend.com
Info: http://framework.zend.com/archives
Unsubscribe: fw-general-unsubscr...@lists.zend.com


Reply via email to