创建 Symfony2 表单主题 - 字段集和列表样式
我用的是symfony2。我正在尝试覆盖 twig 中默认的 div 样式表单块。
首先,是否有人拥有或知道字段集和列表(ul -> li)方法的可用实现?
I am using symfony2. I am trying to override the default div style form blocks in twig.
First, does any have or know of an available implementation of the fieldset and list (ul -> li) approach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
目前,我实现了这样的fieldset支持:
在类型中:
我有一个名为fieldSet.html.twig的模板,该模板使用视图的属性:
For the moment, I implemented fieldset support like this:
in the Type:
I have a template named fieldset.html.twig, that uses the attributes of the view:
这是一个简单的fieldset示例:
https://gist.github.com/spcmky/8512371
用列表,列表,列表,查看form_widget_compound和form_rows。你可以:
Here is a simple fieldset example:
https://gist.github.com/spcmky/8512371
To replace the divs with a list, look at form_widget_compound and form_rows. You can:
默认情况下,TWIG在渲染表单时使用DIV布局。但是,您可以在表布局中渲染表单。使用form_table_layout.html.twig资源使用这种布局:
By default, Twig uses a div layout when rendering forms.However, you can render forms in a table layout. Use the form_table_layout.html.twig resource to use such a layout:
http://symfony.com/doc/doc/2.0/cookbook/form/form/form/form/form_customization.html
我不知道Thoose的实施,但是欢迎您制定它们并打开拉动请求。
http://symfony.com/doc/2.0/cookbook/form/form_customization.html
I am not aware of a implementation of thoose, but you are welcome to make them and open a Pull Request.