具有键和值的X-Editable Select2

时间:2015-02-02 10:01:59

标签: x-editable

在使用select2标签的X-Editable中,为什么我们不能给出键和值来选择多个值。有什么解决方案吗?

1 个答案:

答案 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'
   });