グリッドがあり、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: [ .....