如何在jquery ui multiselect上设置默认值

时间:2011-04-24 23:05:28

标签: jquery-ui

我正在这样的轨道中创建一个collection_select

<%= collection_select(:company, :business_type_id, @business_type, :id, :name, {:prompt => true},:id=>"companyType") %>

然后使用Jquery,我在多选小部件中转向它:

$("#companyType").multiselect({
  multiple: false,
  noneSelectedText: "Type",
  selectedList: 1
});

我想为它设置一个默认值...关于如何的任何想法?

1 个答案:

答案 0 :(得分:0)

您可以使用Rails视图助手设置默认选项。这是我从widget

的文档中收集的内容
<%= collection_select(:company, :business_type_id, @business_type, :id, :name, {:prompt => true},:id=>"companyType", :selected => @business_type.id) %>