File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 668
668
//get original value from the cell
669
669
origCellValue = cellModel ( $scope ) ;
670
670
671
- html = $scope . col . editableCellTemplate
672
- . replace ( uiGridConstants . COL_FIELD , 'grid.getCellValue(row, col)' ) ;
671
+ html = $scope . col . editableCellTemplate ;
673
672
674
673
if ( $scope . col . colDef . editModelField ) {
675
674
html = html . replace ( uiGridConstants . MODEL_COL_FIELD , gridUtil . preEval ( 'row.entity.' + $scope . col . colDef . editModelField ) ) ;
678
677
html = html . replace ( uiGridConstants . MODEL_COL_FIELD , $scope . row . getQualifiedColField ( $scope . col ) ) ;
679
678
}
680
679
680
+ html = html . replace ( uiGridConstants . COL_FIELD , 'grid.getCellValue(row, col)' ) ;
681
+
681
682
var optionFilter = $scope . col . colDef . editDropdownFilter ? '|' + $scope . col . colDef . editDropdownFilter : '' ;
682
683
html = html . replace ( uiGridConstants . CUSTOM_FILTERS , optionFilter ) ;
683
684
You can’t perform that action at this time.
0 commit comments