EasyUI的ComBoBox怎么设定默认值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EasyUI的ComBoBox怎么设定默认值相关的知识,希望对你有一定的参考价值。

 $("#cc").combobox(
    data: [ "id": "1", "text": "测试1" , 
         "id": "2", "text": "测试2" ],
    valueField: "id",
    textField: "text",
    onLoadSuccess: function () 
        $("#cc").combobox("setValue", "2");// 选中id="2"的项
    
);

 combobox加载完毕,设置默认选中。

参考技术A 在完成事件中,自己再手动调用方法选中某一个值

EasyUI Combobox组合框(模糊搜索默认值绑定)

EasyUI Combobox组合框是个比较好用的前端组件,例如它支持本地搜索和远程搜索,这样就可以免去自己写模糊查询。基本使用方式如下:

<input id="cc" name="dept" value="aa">
$(#cc).combobox({
    url:JsonData.ashx,
    valueField:id, //表单值
    textField:text, //表单文本
    mode:local, //本地搜索
    onLoadSuccess: function () { //加载完成后,默认选中第一项
         var val = $(this).combobox("getData");
         for (var item in val[0]) {
             if (item == "id") {
                 $(this).combobox("select", val[0][item]);
             }
         }
     }
});
[{
    "id":1,
    "text":"text1"
},{
    "id":2,
    "text":"text2"
},{
    "id":3,
    "text":"text3",
    "selected":true
},{
    "id":4,
    "text":"text4"
},{
    "id":5,
    "text":"text5"
}]

以上是关于EasyUI的ComBoBox怎么设定默认值的主要内容,如果未能解决你的问题,请参考以下文章

easyui datagrid combobox 怎么设置默认值

easyui combobox中的值是从数据库拿过来的,编辑easyui gridveiw时combobox定位gridveiw对应值

easyui combobox 设置值

EasyUI Combobox组合框(模糊搜索默认值绑定)

关于easyui combobox

请教如何获取easyui-combobox下拉菜单的多个选中值