我在网格上有这个:
{ xtype: 'actioncolumn',
renderer: function (val, metadata, record) {
if (record.raw.possibleActions != 2) {
this.items[0].icon = '';
this.items[0].tooltip = '';
}
metadata.style = 'cursor: pointer;';
return val;
},
width: 30,
align: 'center',
sortable: false,
items: [{
icon: 'images/edit.png',
tooltip: 'stuff',
handler: function (grid, rowIndex, colIndex) {
'do stuff'
}
}]
},
我希望当字段“possibleActions”不同于 2 时隐藏操作列的图标。
有了这个this.items[0].icon = '';
,它会从所有列中删除图标......
如何访问与条件匹配的特定行的列?