分类下拉选择2

时间:2014-06-03 04:49:16

标签: angularjs jquery-select2

我正在使用select2多选下拉列表,它工作得很好,但我的问题是,我想对下拉列表进行分类。这是我的代码

<script src="/static/select2.js"></script>
<input type="hidden" id="test" value=""/>

和js

$(test).select2({
data:data,
multiple: true,
width: "100%",
placeholder:"None Selected",
closeOnSelect:false,
});

1 个答案:

答案 0 :(得分:0)

这应该有效:

$(test).select2({
  data: 
    [
      {
        text: 'GREETINGS',
        children: 
        [
          { 'id': 1, text: 'hai' }, 
          { 'id': 2, text: 'hellow'}, 
        ]
      }, 
      {
        text: 'QUESTIONS',
        children: 
        [
          { 'id': 3, 'text': 'yes' }, 
          { 'id': 4, 'text': 'no'  }
        ]
      }
    ],
  multiple: true,
  width: "100%",
  placeholder: "None Selected",
  closeOnSelect: false,
});