标签:
要通过返回的json来显示部门的名称dname
Emp 表中的deptno通过Dept dept 如何显示部门名称
field : ‘dname‘,
title : ‘部门名称‘,
width : 100,
sortable : true,
formatter:function(value,row,index){
if(row.dept){
return row.dept.dname;
}else{
return value;
}
标签:
原文地址:http://www.cnblogs.com/dream-0916/p/5975780.html