2014-10-03 44 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')); 
     } 
    } 
} 
相关问题