From 75b33954554d24ac41533678b5d5ff5ece61b3e7 Mon Sep 17 00:00:00 2001 From: Jeff Davis Date: Thu, 17 Dec 2020 16:43:15 -0800 Subject: [PATCH] LP#1896285: progress dialog when marking selected items as missing Signed-off-by: Jeff Davis Signed-off-by: Bill Erickson --- Open-ILS/web/js/ui/default/staff/cat/item/app.js | 2 ++ 1 file changed, 2 insertions(+) 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(); }); -- 2.43.2