0
私はExtJsに新しく、ExtJs GridでActioncolumnの1つを使用しています。私の要件はMousehoverイベントでツールチップを表示していますが、画像クリックイベント私は次のコードを使用しています。ExtJs Actioncolumツールチップにマウスオーバーではなく画像をクリックする
私は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);
}
}],
}
は、:)それが動作ありがとう実際にそれが与えていたブラウザの問題でしたクロムの問題ですが、IE上で作業しています。 – PrashantS