将集合和自定义字段添加到选择框
我正在制作一个选择框,并在其中使用一个集合。但在所有选择的顶部,我想添加一些本来不会出现在该集合中的内容。
这是我的选择框:
= select (@organization, "tabs", @organization.tabs.collect { |t| [t.title, t.id] }, {}, {:class => "text_tab_link"} )
我想添加单词 About
和 Edit
作为集合顶部的附加选择。
有人知道如何拉皮条选择框吗?
I am making a select box, and I'm using a collection in it. But at the top of all the selections I want to add something that otherwise wouldn't be in that collection.
Here is my select box :
= select (@organization, "tabs", @organization.tabs.collect { |t| [t.title, t.id] }, {}, {:class => "text_tab_link"} )
And I would like to add the words About
and Edit
as an additional selection at the top of the collection.
Anyone know how to pimp a select box?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许是这样的?根据需要选择特殊 ID。
Something like this perhaps? Choose the special ids as appropriate.
另一种变体
Another variant