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

EasyUI 之 easyui-datagrid 字段格式化

时间:2017-09-20 14:36:26      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:tool   title   返回   用户   too   UI   ber   tle   format   

后台返回的json格式;

技术分享

列表字段要显示username 用户的真实姓名;

技术分享

formatter="formatterByUserName"
<table id="dg"class="easyui-datagrid" style="width:100%;height:auto;"
            url="<%=basePath %>notice/listByPage"
            toolbar="#toolbar" pagination="true"
            title="公告管理"
            rownumbers="true" fitColumns="true" singleSelect="true">
        <thead>
            <tr>
                <th field="title" width="50">标题 </th>
                <th field="content" width="50">内容</th>
                <th field="createDate" width="50">创建时间</th>
                <th field="user" width="50" formatter="formatterByUserName">用户</th>
            </tr>
        </thead>
    </table>
<script type="text/javascript">
    
    function formatterByUserName(val,row){
        if(val==null){
            return "";
        }
        return val.username;
    }
</script>

 

EasyUI 之 easyui-datagrid 字段格式化

标签:tool   title   返回   用户   too   UI   ber   tle   format   

原文地址:http://www.cnblogs.com/watermelonban/p/7560414.html

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