ExtJs Actioncolum工具提示显示单击图像而不是鼠标悬停

时间:2016-03-25 09:54:32

标签: extjs

我是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);
                    }
                }],              
                
                
                
                
            }




1 个答案:

答案 0 :(得分:0)