1
我在顯示數據網格1管理員和2 - 標準 對電網應用列表過濾器上顯示1和2 我需要顯示「admin」和「標準」列表過濾
支票影像:
代碼:
{ text: 'UserType', dataIndex: 'UserTypeId', groupable: true,
filter: {
type: 'list', active: true
},
renderer: function (value) {
if (value == 1) {
return "Admin";
}
else
return "Standard";
}
},