我是ExtJs的新手,我在ExtJs Grid中使用了一个列作为Actioncolumn,我的要求是在Mousehover事件上显示工具提示,但我正在获取图像点击事件的工具提示,我正在使用以下代码,
我正在使用Ext.QuickTips.init();
{
xtype: 'actioncolumn',
width: 30,
sortable: false,
menuDisabled: true,
items: [{
icon: '/delete.gif',
getClass: function(value,meta,record,rowIx,colIx, store) {
this.items[0].tooltip = 'Delete Record ';
return 'some-class-name'; // or something if needed
},
handler: function(grid, rowIndex, colIndex) {
store.removeAt(rowIndex);
}
}],
}

答案 0 :(得分:0)