如何使用 ActiveScaffold Rails 插件 (http://github.com/activescaffold) 创建自定义下拉菜单?
我有几个带有整数字段的模型。 我还有将整数与字符串关联的哈希值(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用表单覆盖。 在控制器助手中,您可以定义一个名为 #{column_name}_form_column 的方法,该方法负责显示字段的输入元素。
例如我有:
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: