In Firefox, we have editableCellTemplate:
<input type="number" ng-class="\'colt\' + col.index" ng-input="COL_FIELD" ng-model="COL_FIELD" />
At the first click of the user, he allows you to change the cell. Any subsequent attempts are not in edit mode. We are currently using version 2.0.7 of the grid. However, it works great in Chrome and IE.
Error in Firefox console after trying to change the same cell: TypeError: current is null angular.js: 9186
Here is a jsfiddle example to illustrate the problem in Firefox: try changing the "age" column.
http://jsfiddle.net/zlaja1983/38hPb/
source
share