From 5b74559f3f2a34cbe3e4b1eca7c6e8df35b2d392 Mon Sep 17 00:00:00 2001 From: Jonathan Leitschuh Date: Tue, 25 Aug 2015 12:16:19 -0400 Subject: [PATCH] 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 --- src/features/cellnav/js/cellnav.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/cellnav/js/cellnav.js b/src/features/cellnav/js/cellnav.js index 5cfb8f63de..10e458133f 100644 --- a/src/features/cellnav/js/cellnav.js +++ b/src/features/cellnav/js/cellnav.js @@ -67,8 +67,8 @@ * If the column has a cellFilter this will NOT return the filtered value. */ RowCol.prototype.getIntersectionValueRaw = function(){ - var getter = $parse(this.col.field); - var context = this.row.entity; + var getter = $parse(this.row.getEntityQualifiedColField(this.col)); + var context = this.row; return getter(context); }; /**