码迷,mamicode.com
首页 > 移动开发 > 详细

EasyUI combogrid使用手机号查询客户列表

时间:2015-04-04 12:07:17      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

HTML

<div class="tip">客户名称</div>
<div class="content"><select id="enterprise" class="easyui-combogrid" style="width:80% ; height: 30px;"></select></div>

 

JS

$("#enterprise").combogrid({
    panelWidth: 400,
    idField: id,
    textField: enterprise,
    url: ../_Datas/xxx/xxx.ashx?o=getmemberbymobile,
    method: get,
    mode: remote,
    columns: [[
        { field: id, title: 编号, hidden: true },
        { field: enterprise, title: 客户名称 , width: 380 }
    ]],
    fitColumns: true
});

 

输入框内容发生变化时会重新请求 ASHX,并加参数q,为输入的内容。

EasyUI combogrid使用手机号查询客户列表

标签:

原文地址:http://www.cnblogs.com/chenliang-zibo/p/4391750.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!