如何删除 ActiveScaffold 中子组上的显示/隐藏链接?

发布于 2024-07-29 01:21:21 字数 271 浏览 5 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清醇 2024-08-05 01:21:21

还没有这样的设置(在撰写本文时)。 你必须自己修补它。

代码位于 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 file lib/active_scaffold/helpers/view_helpers.rb of Active Scaffold.

可遇━不可求 2024-08-05 01:21:21

您可以使用如下 css 规则:

a.visibility-toggle { display: none; }

您可能希望更精细地限定 css 选择器的范围,以仅隐藏特定的子组切换。

You could use a css rule like:

a.visibility-toggle { display: none; }

You'll probably want to scope the css selector more finely to only hide the specific sub-group toggles.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文