1,datagrid之formatter
formatter格式化函数有三个参数:
value:字段值(一般为后台传递给前台的值);
row:当前行数据;
index:当前行索引。
return值是显示值,所以如果有if,则必须得有else.
特别记住:data-options中的formatter是不用加单引号的,不加单引号,不加单引号。
例:常用自动生成行格式化用法:
<head>
<script type="text/javascript">
function formatState(value,row){
if(value==1){
return "未处理";
}else{
return "已处理";
}
}
</script>
</head>
<body>
<table id="dg" class="easyui-datagrid">
<thead>
<tr>
<th data-options="field:'state',formatter:formatState">
状态
</th>
</tr>
</thead>
</table>
<body>