删除字段集之间的空间
我有一个字段集,其中包含许多动态添加和删除的嵌套字段集。
但是,我希望嵌套字段集的显示方式类似于表单,例如元素之间没有太多空间。然而,每个字段集在 then 和 then 之间都有一个间隙。我不知道如何删除这个。 我尝试在父字段集上使用 bodystyle 但没有效果。
我使用这种方法是因为在表单中添加/删除“行”更容易。
I have a fieldset that contains a number of nested fieldsets that are dynamically added and removed.
However, I want the nested fieldsets to be displayed similar to a form e.g. with not much space between elements. However, each fieldset has a gap between then & I don't know how to remove this.
I tried using bodystyle on the parent fieldset but that had no effect.
I am using this method as it's easier to add/remove the "rows" in the form.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在每个嵌套字段集上设置 bodyStyle,而不是在父字段集上。
取决于父字段集的布局,但请在每个嵌套字段集上尝试
bodyStyle:'padding:0px'
。在父字段集上,您设置
defaults:{bodyStyle:'padding:0px' }
You need to set bodyStyle on each of the nested fieldsets, not on the parent fieldset.
Depends on the parent fielset's layout but try
bodyStyle:'padding:0px'
on each of nested fieldsets.On parent fieldset, you set
defaults:{bodyStyle:'padding:0px'}