在 Zend SubForm 中,如何将 Legend escape 设置为 false?
我有一个子表单,我在其中设置了图例。
$dob = new Zend_Form_SubForm();
$dob->addElement($birthdayMonth)
->addElement($birthdayDay)
->setLegend('when is your birthday?');
如何设置图例,使其不会转义文本?
通常我会得到装饰器,但这不起作用:
$decorator = $dob->getDecorator('Legend');
$decorator->setOption('escape', false);
I've got a subform, where I set a legend.
$dob = new Zend_Form_SubForm();
$dob->addElement($birthdayMonth)
->addElement($birthdayDay)
->setLegend('when is your birthday?');
How do I set the Legend so it won't escape the text?
Usually I'd get the decorator, but this doesn't work:
$decorator = $dob->getDecorator('Legend');
$decorator->setOption('escape', false);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以设置 Fieldset 装饰器,它将其传递给 Legend 字段。
You can set the Fieldset decorator, it passes it to the Legend field.