easyui-combogrid选中给后台传值默认取idField:ID字段

//html 


//默认取combogrid控件用户选中的idField的id字段值给后台的updateCode属性赋值

//说明:

  //easyui-combogrid  下拉框和复选框 用ajax请求后台将相应的数据赋值给变量有利于代码重用性
        $.ajax({
            url: base + "/xxxx/xxxx",
            async: false,
            data: {
                "codeType": 'm_about_us'
            },
            dataType: "json",
            type: 'POST',
            success: function(data) {
                dicCode = data;
            }
        });

    $('#upInfoType').combogrid({
        multiple: false,//单选多选
        idField: '实体类属性名',//文本框会根据这个给后台属性参数赋值
        textField: '实体类属性名',
        data : dicCode,
        columns: [[
            {field:'ck',checkbox:true,width:40},
            {field:'实体类属性名',title:'xxxx',width:330},
            {field:'实体类属性名',title:'xxxx',width:330}
        ]],
        editable : false,
        fitColumns: true,
        panelHeight:'200px',
        onChange : function(newValue, oldValue){
           
        }
    });

 

你可能感兴趣的:(jQueryEasyUI)