如何使用 ActiveScaffold Rails 插件 (http://github.com/activescaffold) 创建自定义下拉菜单?

发布于 2024-07-27 17:13:32 字数 251 浏览 5 评论 0原文

我有几个带有整数字段的模型。 我还有将整数与字符串关联的哈希值(1 => 蓝色,2 => 红色,诸如此类)。

如何将它们转换为 ActiveScaffold (http://github.com/activescaffold) 控制器中的下拉列表? 您是否需要自定义代码,或者只是有我没有看到的自定义?

I have several models with fields that are integers. I also have hashes that associate integers with strings (1 => Blue, 2 => Red, that sort of thing).

How do you turn these into dropdown lists in an ActiveScaffold (http://github.com/activescaffold) controller? Do you need custom code, or is there just a customization that I'm not seeing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

故事和酒 2024-08-03 17:13:32

您可以使用表单覆盖。 在控制器助手中,您可以定义一个名为 #{column_name}_form_column 的方法,该方法负责显示字段的输入元素。

例如我有:

def referral_type_form_column(record, input_name)
  select :record, :referral_type, ['', 'A', 'B', 'C'], :name => input_name
end

You can use Form Overrides. In the controller helper you can define a method named #{column_name}_form_column which is responsible for displaying the input element of your field.

For example I have:

def referral_type_form_column(record, input_name)
  select :record, :referral_type, ['', 'A', 'B', 'C'], :name => input_name
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文