上周我搬到了最新版本的Select2(4.0.0。)。一切按预期工作,期望选择组选项。
例如:我想选择Customer1(id:c1)来显示属于所有客户项目的项目。
在v4.0之前。这可以通过简单地为每个选择组项添加ID来实现,因为v.4.0这不再起作用了......请问有什么建议吗?
var items = [
{
id: 'c1',
text: 'Customer1',
children: [
{ id: '1', text: 'Project1' },
{ id: '2', text: 'Project2' },
]
},
{
id: 'c2',
text: 'Customer2 ',
children: [
{ id: '3', text: 'Project1' },
{ id: '4', text: 'Project2' },
]
}
];
$('select').select2({
placeholder: "Select customer/project",
data: items
});