{
title : '类别',
field : 'category',
width : 150,
sortable : true,
editor : {
type : 'combobox',
options : {
valueField : 'id',
textField : 'text',
panelHeight : 'auto',
editable : false,
data : [ {
id : 'state',
text : '国务院'
}, {
id : 'ministry',
text : '财政部'
}, {
id : 'commerce',
text : '商务部'
}, {
id : 'letter',
text : '工信部'
}, {
id : 'bank',
text : '银监会'
}, {
id : 'commission',
text : '经信委'
} ]
}
},
formatter : function(value, row, index) {
console.info(value);
if (value == "state") {
return "国务院";
} else if (value == "ministry") {
return "财政部";
} else if (value == "commerce") {
return "商务部";
} else if (value == "letter") {
return "工信部";
} else if (value == "bank") {
return "银监会";
} else if (value == "commission") {
return "经信委";
} else {
return value;
}
}
}