我想在网格中单独显示特定用户的图标。我想在监听器函数中写这个。
问问题
4085 次
2 回答
1
可以使用 getClass 根据条件隐藏图标。我不确定这是否是您正在寻找的东西..
{
xtype: 'actioncolumn',
items: [{
icon: '/images/your_icon.png',
getClass: function(value, meta, record) {
if(record.get('user') === 'your_user') {
return 'x-hide-visibility';
}
}
}]
}
于 2013-07-02T12:31:33.593 回答
1
这是特定于操作列的,以防上述解决方案不起作用。因为它不适合我。这可能有效
{
xtype: 'actioncolumn',
items : [{
icon : 'imagepath',
scope: this,
handler : function(grid, rowIndex, colIndex) {
//if you need one
},
getClass : function(value, meta, record, rowIx, ColIx, store) {
// Determines at runtime whether to render the icon/link
return (record.data.user === 'your_user') ?
'x-grid-center-icon': //Show the action icon
'x-hide-display'; //Hide the action icon
}
}]
}
于 2015-07-13T06:43:14.543 回答