如何扩展/覆盖 symfony2 form_row 函数
我想在我的 twig 模板中使用 form_row(form.myfield)
来渲染表单字段的整行(标签、错误、小部件)。
但我想覆盖 form_widget()
函数以给出一些帮助消息。
我现在的问题是:如何扩展/覆盖 form_row()
函数以添加带有我的帮助消息的属性,该属性将传输到 form_widget()
函数?
我想用什么:
{ form_row(form.firstname, { 'attr': {'helpmsg': 'I am your help buddy'} }
I would like to use form_row(form.myfield)
in my twig template to render the whole row (label, error, widget) of a form field.
But I would like to overwrite the form_widget()
function to give out some help message.
My question now is: How to extend/overwrite the form_row()
function to add an attribute with my help message, that is transfered to the form_widget()
function?
What i would like to use:
{ form_row(form.firstname, { 'attr': {'helpmsg': 'I am your help buddy'} }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然,您正在寻找文档的此页面。
Apparently, you were looking for this page of the documentation.