使用formatter属性
如表格中类型列,后台返回数据格式int型,0显示车源,1显示货源
表格中,使用formatter定义格式化方法为Type
<th field="type" formatter=Type width="5" align="center" sortable="true">类型</th>
javascript添加格式化方法
function Type(value, row, index) {
if (row.type == 0) {
return "车源";
} else {
return "货源";
}
}
即可完成这一列的格式化显示。
<th field="type" formatter=Type width="5" align="center" sortable="true">类型</th>