From: Jeff Davis Date: Fri, 18 Dec 2020 00:43:15 +0000 (-0800) Subject: LP#1896285: progress dialog when marking selected items as missing X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=75b33954554d24ac41533678b5d5ff5ece61b3e7;p=evergreen%2Fjoelewis.git LP#1896285: progress dialog when marking selected items as missing Signed-off-by: Jeff Davis Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/web/js/ui/default/staff/cat/item/app.js b/Open-ILS/web/js/ui/default/staff/cat/item/app.js index f0697eaec8..dbf7176e2a 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/item/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/item/app.js @@ -635,8 +635,10 @@ function($scope , $q , $window , $location , $timeout , egCore , egNet , egGridD } $scope.selectedHoldingsMissing = function () { + egProgressDialog.open(); itemSvc.selectedHoldingsMissing(copyGrid.selectedItems()) .then(function() { + egProgressDialog.close(); console.debug('Marking missing complete, refreshing grid'); copyGrid.refresh(); });