如果鼠标悬停在" row-body"上,我想检索该行的数据。 我尝试使用"行体选择"和"输入鼠标"但是这不会检索行数据。
答案 0 :(得分:0)
有一个叫做#34; itemmouseenter"。
的听众以下是一个例子:
{
xtype: 'gridpanel',
listeners: {
itemmouseenter: function(this, record, item, index, e, eOpts ) {
// record is holding your data of the row
alert(record.get('yourcolumnindex'));
}
}
}