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

EasyUI DataGrid 中字段 formatter 格式化不起作用

时间:2014-08-04 21:13:15      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:style   blog   使用   io   数据   for   2014   art   

今天用 EasyUI datagrid 来做列表,要对一些数据进行格式化,推断某字段状态时,发现 formatter 格式化相应的函数不起作用。


<table id="list_data" title="未审核报表" class="easyui-datagrid" style="width: auto;height:350px;" url=""
       toolbar="#toolbar" pagination="true" pagesize="10" total="20"
       rownumbers="true" fitcolumns="true" singleselect="true" pagelist="[10,20]" loadmsg="正在努力载入数据,请稍后...">
    <thead>
        <tr>
            <th data-options="field:‘报表名称‘,width:200,align:‘center‘">报表名称</th>
            <th data-options="field:‘报表分组‘,width:80,align:‘center‘">报表分组</th>
            <th data-options="field:‘报表类型‘,width:80,align:‘center‘">报表类型</th>
            <th data-options="field:‘报表分类‘,width:80,align:‘center‘">报表分类</th>
            <th data-options="field:‘制表人‘,width:80,align:‘center‘">上报人</th>
            <th data-options="field:‘实际报出日期‘,width:90,align:‘center‘" formatter="ChangeDateFormat">上报时间</th>
            <th data-options="field:‘填报单位‘,width:80,align:‘center‘">上报单位</th>
            <th data-options="field:‘审核状态‘,width:80,align:‘center‘">审核状态</th>
            <th data-options="field:‘审核状态‘,width:80,align:‘center‘" formatter="managerstr">操作</th>
        </tr>
    </thead>
</table>


出问题是这句:

<th data-options="field:‘审核状态‘,width:80,align:‘center‘" formatter="managerstr">操作</th>

改成,前面没有出现过的字段,否则,不会进来格式化的。

<th data-options="field:‘用户报表编号‘,width:80,align:‘center‘" formatter="managerstr">操作</th>


后来检查发现 : 假设某列的 field值,在前面已经出现过,则后出现的同field列,在这里,我的是 “审核状态”,将按第一次出现的field列使用。假设第一次出现的field同值的列没有formatter,兴许的formatter将无效。

function managerstr(value,rowData,rowIndex) {
        if (rowData["审核状态"] == "未审核")
            return "1";
        else if (rowData["审核状态"] == "已取回重填")
            return "2";
        else
            return "已经审核,不同意操作";
    }









EasyUI DataGrid 中字段 formatter 格式化不起作用,布布扣,bubuko.com

EasyUI DataGrid 中字段 formatter 格式化不起作用

标签:style   blog   使用   io   数据   for   2014   art   

原文地址:http://www.cnblogs.com/mengfanrong/p/3890783.html

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