I have the following:
$scope.modalReset = function () {
gridService.modalReset($scope);
}
$scope.rowAction = function (action, row) {
gridService.rowAction(action, $scope, row, 'Question');
}
$scope.submitItem = function (formData) {
gridService.submitItem($scope, 'Question', formData);
}
Is there a way that these function calls could be written more simply. I am not looking to combine them. There are all functions that are part of the scope object.