我绞尽脑汁却无法弄清楚如何检测ng-grid中的细胞数据变化。 下面的代码片段正在使用ng-change,它正确调用save(),但它不是 触发器我想要因为它被调用任何键控条目。我需要知道什么时候编辑 细胞完整。
任何帮助都将不胜感激。
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);
}
}]);
答案 0 :(得分:5)
这应该可以解决问题,并在编辑单元格时为您提供完整的编辑行。 然后您可以保存/更新
$scope.$on('ngGridEventEndCellEdit', function(event) {
$scope.contact = event.targetScope.row.entity;
Contacts.save($scope.contact);
// console.log($scope.contact );
});
答案 1 :(得分:5)
如果你正在使用UI Grid 3.0或4.x,你应该等待: uiGridEventEndCellEdit
$scope.$on('uiGridEventEndCellEdit', function (data) {
console.log(data.targetScope.row.entity);
});
答案 2 :(得分:4)
您应该能够侦听ngGridEventEndCellEdit事件:
$scope.$on('ngGridEventEndCellEdit', function(data) {
console.log(data);
});
在https://github.com/angular-ui/ng-grid/wiki/Grid-Events上没有详细描述。
不幸的是我还没有弄清楚这个事件如何告诉我我们已经完成编辑的行/单元格,以便我可以保存它。但这可能是一个开始。
或者,关于stackoverflow的这个问题似乎有一个很好的答案,涉及ng-blur指令:AngularJS and ng-grid - auto save data to the server after a cell was changed
答案 3 :(得分:1)
我希望这会对某人有所帮助。我也需要ngGridEventEndCellEdit事件中的网格名称。
在函数中使用jquery:
$scope.$on('ngGridEventEndCellEdit', function (data) {
var gridName = $('.' + data.targetScope.gridId).attr('ng-grid');
});
答案 4 :(得分:0)
您可以创建一个模糊指令,并在输入失去焦点时调用保存功能。
app.directive('ngBlur', ['$parse', function($parse) {
return function(scope, element, attr) {
var fn = $parse(attr['ngBlur']);
element.bind('blur', function(event) {
scope.$apply(function() {
fn(scope, {$event:event});
});
});
}
}]);
答案 5 :(得分:0)
对于ui-grid 3.0.6,我确实使用了afterCellEdit事件。
$scope.gridOptions.onRegisterApi = function (gridApi) {
$scope.gridApi = gridApi;
gridApi.edit.on.afterCellEdit($scope,function(rowEntity, colDef,newValue,oldValue){
if(newValue != oldValue){
// Do something.......
// colDef.field has the name of the column that you are editing
}
});
}