在使用select2标签的X-Editable中,为什么我们不能给出键和值来选择多个值。有什么解决方案吗?
答案 0 :(得分:0)
$('#username').editable({
source: [ {value: 1, text: 'Male'},
{value: 2, text: 'Female'}],
select2: {
multiple: true, // for multiple select 2 values
},
pk: 1, // primary key
url: 'post.aspx',
name: 'username'
});