码迷,mamicode.com
首页 > 其他好文 > 详细

项目技术点

时间:2019-10-19 09:54:05      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:orm   style   标签   fun   发送   row   too   easyui   显示   

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"发送一个分页请求

 

项目技术点

标签:orm   style   标签   fun   发送   row   too   easyui   显示   

原文地址:https://www.cnblogs.com/xiaoruirui/p/11702772.html

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