我有一个网格,并且有 2 列Name, Age
。此网格中有几行(如 20-30 条记录)。现在,当我单击一行时,我需要获取人员的名称并将其显示在标签上。
我想,如果我使用getRowClass: function(record, rowIndex, rowParams, store)
我可以获得所选行值的详细信息。但是,这是行不通的。有人能帮我吗 ?
xtype: 'gridpanel',
height: 500,
width: 800,
title: 'Person Grid',
store: 'Person',
viewConfig: {
getRowClass: function(record, rowIndex, rowParams, store) {
console.log("Print the selected row data and set to label");
console.log(record);
console.log(rowIndex);
console.log(rowParams);
}
},
columns: [ .....