2014-10-03 26 views

回答

0

沒有爲那個叫「itemmouseenter」的監聽器。

下面是一個例子:

{ 
    xtype: 'gridpanel', 
    listeners: { 
     itemmouseenter: function(this, record, item, index, e, eOpts) { 
      // record is holding your data of the row 
      alert(record.get('yourcolumnindex')); 
     } 
    } 
} 
相關問題