Skip to content

Commit 5b74559

Browse files
committed
fix(cellNav): Error when field defined with number
Cell nav was throwing an error when you had a field defined like `'1.b'` Resolved by using the `getQualifiedColField` method on the gridRow. Closes #4258
1 parent 7643a9e commit 5b74559

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/features/cellnav/js/cellnav.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
* If the column has a cellFilter this will NOT return the filtered value.
6868
*/
6969
RowCol.prototype.getIntersectionValueRaw = function(){
70-
var getter = $parse(this.col.field);
71-
var context = this.row.entity;
70+
var getter = $parse(this.row.getEntityQualifiedColField(this.col));
71+
var context = this.row;
7272
return getter(context);
7373
};
7474
/**

0 commit comments

Comments
 (0)