我需要 Rails (3.2.8) 中的双面多选框,就像这里一样:
http://www.stevefenton.co.uk/Content/Jquery-Two-Sided-Multi-Selector/
但是,我不能让它与 Rails 一起使用,而且它的文档记录很差,我不得不放弃那个。(它显示但按钮不起作用,即使在新的 Rails 应用程序上也是如此)
有谁知道类似的 jquery 或 gem 解决方案可以与 rails 一起使用?
非常感谢!
我需要 Rails (3.2.8) 中的双面多选框,就像这里一样:
http://www.stevefenton.co.uk/Content/Jquery-Two-Sided-Multi-Selector/
但是,我不能让它与 Rails 一起使用,而且它的文档记录很差,我不得不放弃那个。(它显示但按钮不起作用,即使在新的 Rails 应用程序上也是如此)
有谁知道类似的 jquery 或 gem 解决方案可以与 rails 一起使用?
非常感谢!
你可以试试这个:http: //quasipartikel.at/multiselect/
或者这是另一个: http: //loudev.com/
然后在 Rails 视图中创建类似于以下内容的选择(“多个”部分对于任何一个插件都很重要):
<%= f.select(:country, "country_id", Country.all.collect {|c| [ c.name, c.id ] }, {:include_blank => false}, {:class => "multiselect", :multiple => "multiple"}) %>
并且在您的视图中还有以下 JavaScript:
<script>
$(document).ready(function (){
$(".multiselect").multiselect(); // If you're using the quasipartikel one
$('.multiselect').multiSelect(); // If you're using the loudev.com one
});
</script>