我想跟踪ui网格的行编辑事件。我已经通过了gridApi但是没有任何相关内容。
任何人都可以帮助我。
答案 0 :(得分:0)
好的,试试这个:
请务必在您的columnsDefs中设置列enableCellEdit: true
,然后您需要按照以下方式执行操作...
$scope.gridOptions.onRegisterApi = function(gridApi){
//set gridApi on scope
$scope.gridApi = gridApi;
gridApi.edit.on.afterCellEdit($scope,function(rowEntity, colDef, newValue, oldValue) {
// do stuff here....
});
};
您可以在此处找到更多信息http://ui-grid.info/docs/#/tutorial/201_editable