Skip to content

Commit

Permalink
Merge pull request #4263 from angular-ui/fix/cellNavParse
Browse files Browse the repository at this point in the history
fix(cellNav): Error when field defined with number
  • Loading branch information
JLLeitschuh committed Aug 25, 2015
2 parents c83a1bc + 5b74559 commit 69a75da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/cellnav/js/cellnav.js
Expand Up @@ -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);
};
/**
Expand Down

0 comments on commit 69a75da

Please sign in to comment.