From f18a260e1f75c090e1a1567173c53d82fd651fb2 Mon Sep 17 00:00:00 2001 From: berick Date: Fri, 20 May 2011 13:20:40 -0400 Subject: [PATCH] show activity dialog on vandelay item export --- Open-ILS/web/js/ui/default/vandelay/vandelay.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Open-ILS/web/js/ui/default/vandelay/vandelay.js b/Open-ILS/web/js/ui/default/vandelay/vandelay.js index e0a7eaf9f8..1c0348688e 100644 --- a/Open-ILS/web/js/ui/default/vandelay/vandelay.js +++ b/Open-ILS/web/js/ui/default/vandelay/vandelay.js @@ -404,6 +404,7 @@ function vlExportInit() { if(!value) return; if(!confirm('Export as "' + value + '"?')) return; // TODO: i18n + displayGlobalDiv('vl-generic-progress'); var method = 'open-ils.vandelay.import_item.queue.export.' + value + '.atomic'; fieldmapper.standardRequest( @@ -422,6 +423,7 @@ function vlExportInit() { } function exportHandler(type, response) { + displayGlobalDiv('vl-import-error-div'); try { var content = openils.Util.readResponse(response); if (type=='email') { -- 2.11.0