我有一家商店,其字段中包含“Y”或“N”。我想取那个 Y 或 N 值并在网格中放置一个绿色或红色的小图标而不是文本。我一直在搞乱条件渲染功能,但我不知道如何根据值显示图标。到目前为止我有
initComponent: function() {
this.columns=[
{header: 'PreReq', dataIndex: 'PreReq', width: 50,
renderer: function(value){
if(value == 'Y'){
//some code to put green icon in this cell
}
else if(value =='N'){
//come code to put red icon in this cell
}
else{
//some code to put error icon in this cell
}
}
}
];
this.callParent(arguments);
}