2

我有一家商店,其字段中包含“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);
}
4

1 回答 1

9

这很简单:

return '<img src="..." />';

或者,如果您更喜欢 css 方式,您可以这样做:

renderer: function( value, metadata, record )
{
    metadata.tdCls = 'yes-icon'
}
于 2012-08-28T23:18:52.323 回答