easyui datagrid数据模糊查询

{id:'UserCode',field:'orderUserCode',title:'订货用户代码',type:'combogrid',required:true,editable:true,idField:'clientCode',textField:'clientCode',panelWidth:520,panelHeight:380,
columns:[
        {field:'clientCode',title:'客户编码',width:100,align:'center'},
{field:'clientFullName',title:'客户全称',fixed:'true',align:'center'},
{field:'clientSimpleName',title:'客户简称',width:100,align:'center'},
{field:'clientEnglishName',title:'客户英文名称',width:100,align:'center'}  
       ],
       onClickRow:function(index,row){
        $('#orderUserCname').textbox('setValue',row.clientFullName);
       },
       pagination:true,
       mode:'remote',//mode定义在文本改变的时候如何读取数据网格数据。设置为'remote',数据表格将从远程服务器加载数据。当设置为'remote'模式的时候,用户输入将会发送到名为'q'的http请求参数,向服务器检索新的数据。
       loader:function(param, success, error){
        //获取combobox输入的值  
       var q = param.q;  
       if (q == undefined || q == "" || q == null)  
           return false;  
       $.ajax({  
           url: Config.sysUrl + '/client_provider/queryAll',  
           type: "post",  
           data: { 'clientCode': q },  
           dataType: "json",  
           success: function (data) {  
               //执行loader的success回调函数(装载数据)  
               success(data);  
           },  
           //异常处理  
           error: function (xml, text, msg) {  
               error.apply(this, arguments);  
           }  
       });
       },
       filter: function(q, row){  
            var opts = $(this).combobox('options');  
            return row[opts.textField].indexOf(q) >= 0;//这里改成>=即可在任意地方匹配  
       }
},

你可能感兴趣的:(easyUI)