Currently, I am utilizing angular-js
along with ng-grid. In some instances, I need to employ cell-templates for certain columns. However, there seems to be an issue when attempting to reference external template-html files.
columnDefs: [ {
field: "Foo",
displayName: "Foo",
cellTemplate: '<div class="ngCellText"><input type="text" ng-model="row.entity[col.field]"/> </div>'
}] // Working as expected
columnDefs: [ { field: "Foo", displayName: "Foo", cellTemplate: 'cellTemplate.html' } ]
// Error: [$parse:syntax] Syntax Error
Furthermore, upon navigating to a Plunkr example from the ng-grid site, it appears that issues persist in this scenario as well (you can click on the link to view the exact error message).