Mi sono tormentato ma non riesco a capire come rilevare la modifica dei dati delle celle in ng-grid. Il seguente snippet sta usando ng-change che chiama correttamente save(), ma non è il trigger che desidera poiché viene chiamato per qualsiasi voce con chiave. Devo sapere quando la modifica di la cella è completa.Rilevamento delle modifiche delle celle in angular.js e ng-grid
Qualsiasi aiuto sarebbe apprezzato.
angular.module('controllers', ['ngGrid']).
controller('ContactsListCtrl', ['$scope', 'Contacts', function ($scope, Contacts) {
var editableCellTemplate = '<input type="text" ng-class="\'colt\' + col.index" ng-input="COL_FIELD" ng-model="COL_FIELD" ng-change="save()"/>';
Contacts.get(function(data) {
$scope.contacts = data;
});
$scope.gridOptions = {
data: 'contacts',
enableCellSelection: true,
enableRowSelection: false,
enableCellEdit: true,
showSelectionCheckbox: true,
columnDefs: [
{field: 'lastName', displayName: 'Last Name', enableCellEdit: true, editableCellTemplate: editableCellTemplate},
{field: 'firstName', displayName: 'First Name', enableCellEdit: true, editableCellTemplate: editableCellTemplate},
{field: 'email', displayName: 'EMail Address', enableCellEdit: true, editableCellTemplate: editableCellTemplate},
{field: 'phone', displayName: 'Phone', enableCellEdit: true, editableCellTemplate: editableCellTemplate}
]
};
$scope.save = function() {
$scope.contact = this.row.entity;
Contacts.save($scope.contact);
}
}]);
se si dispone di due (o più) griglie nello stesso ambito, come fai a sapere quale di queste griglie generato l'evento 'ngGridEventEndCellEdit'? – sports
Utilizzando 'event.targetScope.gridId' è possibile identificare quale griglia ha emesso questo evento. –