Skip to content

Commit 2060f50

Browse files
committed
Fix: Update Grid Body getLogicalCellId to use Store.getKey (#9067)
1 parent bab630b commit 2060f50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/grid/Body.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ class GridBody extends Component {
816816
* @returns {String}
817817
*/
818818
getLogicalCellId(record, dataField) {
819-
return `${record[this.store.getKeyProperty()]}__${dataField}`
819+
return `${this.store.getKey(record)}__${dataField}`
820820
}
821821

822822
/**

0 commit comments

Comments
 (0)