Plugin - Easy UI - Combo, Combobox

 

Combobox

<input id="cc" value="001">
$('#cc').combobox({
    // 数据获取地址
    url: '/Student/Read',
    valueField: 'Id',
    textField: 'Name',// 是否能直接在输入框输入字符
    editable : false,
});

 

多选的数据绑定和获取

<input id="cc" value="1,2,3">
$('#cc').combobox({
    // 数据获取地址
    url: '/Student/Read',
    valueField: 'Id',
    textField: 'Name',
    // 是否能够多选
    multiple: true,
    // 是否能直接在输入框输入字符
    editable : false,
});
[HttpPost]
public JsonResult Insert(int[] Ids)
{
    return Json(null);
}

 

posted @ 2017-02-23 14:02  `Laimic  阅读(132)  评论(0)    收藏  举报