Tôi muốn bắt sự kiện nhấn phím enter trên hộp văn bản bên dưới. Để làm cho nó rõ ràng hơn, tôi đang sử dụng một ng-repeat
để điền vào người. Đây là HTML:
<td><input type="number" id="closeqty{{$index}}" class="pagination-right closefield"
data-ng-model="closeqtymodel" data-ng-change="change($index)" required placeholder="{{item.closeMeasure}}" /></td>
Đây là mô-đun của tôi:
angular.module('components', ['ngResource']);
Tôi đang sử dụng tài nguyên để điền vào bảng và mã điều khiển của tôi là:
function Ajaxy($scope, $resource) {
//controller which has resource to populate the table
}