easyui---combogrid

时间:2022-03-11 00:05:56

选择一个数据表格某行记录

依赖panel 和datagrid

easyui---combogrid

combogrid:<select id="cc" name="dept" style="width:250px;"></select>
            $('#cc').combogrid({
panelWidth:,//面板宽度
idField:'id',//表格主键,必须要的,翻页删除就是靠它
textField:'name', //选择表格某行记录后,展示给我们看的文本,自定义,必须和后台。。。
url:'servlet1/userServlet1?method=getList', 异步加载url
columns:[[ //指定哪些字段需要展示 datagrid中一样
{
field:"username",title:"用户名",width:
},
{
field:"password",title:"密码",width:
},
{
field:"sex",title:"性别",width:,
formatter:function(value){ 格式化
if(value==){
return '<span style=color:red;>男</span>';
}else{ return '<span style=color:red;>女</span>';
}
}
},
{ field:"age",title:"年龄",width:
} ]],
mode:"remote" //就是自动搜索功能 }); });

相关文章