如何删除 ActiveScaffold 中子组上的显示/隐藏链接?
使用 ActiveScaffold,我的创建表单上有一个组:
config.create.columns.add_subgroup "Customer" do |customer_group|
customer_group.add :customer_surname, :customer_postcode
end
这有一个我不想要的显示/隐藏链接。 如何删除 ActiveScaffold 中子组上的显示/隐藏链接?
With ActiveScaffold I have a group on my create form:
config.create.columns.add_subgroup "Customer" do |customer_group|
customer_group.add :customer_surname, :customer_postcode
end
This has a Show/Hide link which I don't want. How do I remove the Show/Hide links on a subgroup in ActiveScaffold?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
还没有这样的设置(在撰写本文时)。 你必须自己修补它。
代码位于 Active Scaffold 的 lib/active_scaffold/helpers/view_helpers.rb 文件中的辅助方法
link_to_visibility_toggle
中。There is no setting for that (at the time of writing). You have to patch it yourself.
The code is in the helper method
link_to_visibility_toggle
in the filelib/active_scaffold/helpers/view_helpers.rb
of Active Scaffold.您可以使用如下 css 规则:
您可能希望更精细地限定 css 选择器的范围,以仅隐藏特定的子组切换。
You could use a css rule like:
You'll probably want to scope the css selector more finely to only hide the specific sub-group toggles.