Zend Framework: How do I remove the decorators on a Zend Form Hidden Element?

后端 未结 11 1644
说谎
说谎 2020-12-23 00:07

I\'m trying to remove the default decorators on a hidden form element. By default, the hidden element is displayed like this:

Hidden Element Label
11条回答
  •  隐瞒了意图╮
    2020-12-23 00:10

    For hidden field you need only one decorator - ViewHelper:

    $field = new Zend_Form_Element_Hidden('id');
    $field->setDecorators(array('ViewHelper'));
    

    This will render only the input field, without Dt-Dd wrapper and label.

提交回复
热议问题