I have this code:
<table>
<thead class="table-header">
***
</thead>
<tbody>
<tr ng-repeat="ar in detailrows">
<td><input type="text" class="form-control" id="{{ar.detailid}}-knom"
placeholder="" ng-model="ar.knom" ng-keydown="fn.kd($event,ar)"></td>
*****
</tr>
</tbody>
$scope.kd = function(event,ar) {
var El = event.target.id.split('-');
if (event.keyCode==13) {
angular.element('#'+El[0]+'-kolpr').focus();
console.log(event);
};
};
Why should generate this error:
https://docs.angularjs.org/error/$rootScope/inprog?p0=%2524applyminErr%2F%3C@http:%2Flocal.dizart.com%2Flib%2Fangular.js:80:12%26ie
--
You received this message because you are subscribed to the Google Groups
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.