2016-03-25 6 views
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); 
 
        } 
 
       }],    
 
       
 
       
 
       
 
       
 
      }

答えて

関連する問題