1部门显示和头像显示 使用formatter标签 th width="20" field="department" align="right" formatter="deptFormatter"部门/th function ImageFormatter(v) { return "img width=‘50px‘ height=‘50px‘ src=‘"+v+"‘ alt=‘没有图片
1部门显示和头像显示
使用formatter标签
<th width="20" field="department" align="right" formatter="deptFormatter">部门</th>
function ImageFormatter(v) { return "<img width=‘50px‘ height=‘50px‘ src=‘"+v+"‘ alt=‘没有图片‘>"; } function deptFormatter(v) { return v?v.name:""; }
图片也一样
2.分页
<table id="employeeGrid" class="easyui-datagrid" data-options="fit:true,fixed:true, fitColumns:true,toolbar:‘#toolbar‘,singleSelect:true"; url="/employee/page" iconCls="icon-save" rownumbers="true" pagination="true">
通过pagination="true"确定使用分页
url="/employee/page"发送一个分页请求