FireFox editableCellTemplate allows you to edit only once

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/

+4
source share
1 answer

, type = "number" type = "text". !

0

Source: https://habr.com/ru/post/1542527/


All Articles