diff --git a/APPL/FAC/fac_usrrap_list.asp b/APPL/FAC/fac_usrrap_list.asp
index bf232c939a..83375eb1e8 100644
--- a/APPL/FAC/fac_usrrap_list.asp
+++ b/APPL/FAC/fac_usrrap_list.asp
@@ -185,12 +185,6 @@ if (outputmode == 0)
{
Response.Flush(); // wel direct vorige wissen
}
- else
- {
- // Normaal doet Resultset_table dit voor ons maar hier voeren we zelf de Oracle.Execute uit
- // We geven noLoading mee aan new ResultsetTable om dubbeling te voorkomen
- busyLoading();
- }
}
if (rapport_view(func_mode)) // Normal view
@@ -269,9 +263,6 @@ if (rapport_view(func_mode) && rapport_plain_mode(func_mode) && oRs.eof){ // Ind
%>
<%=L("lcl_empty_rstable")%>
-
<% }
else { // In alle andere gevallen, dus normaliter (bij gevulde oRs) zijn dat nog alle gevallen...
diff --git a/APPL/Localscripts/FcltMgr.js b/APPL/Localscripts/FcltMgr.js
index cd415ef21f..d3545f485d 100644
--- a/APPL/Localscripts/FcltMgr.js
+++ b/APPL/Localscripts/FcltMgr.js
@@ -34,6 +34,7 @@ var FcltMgr =
hrefBase = hrefBase.substr(0, hrefBase.indexOf("&" + nm + "="));
hrefBase += "&" + params.appendurl;
}
+ $("li#printhamburger i.fa.fa-fw.fa-bars").attr("class", "fa fa-fw fa-refresh fa-spin fa-2x");
window.location.href = hrefBase;
},
defaultManager :
@@ -923,6 +924,13 @@ var FcltMgr =
return; // Qlikview in een ander frame
}
+ $(elm_iframe.contentWindow).on("beforeunload", function () {
+ elm_iframe.contentWindow.setTimeout(function () {
+ var $body = $("body", elm_iframe.contentDocument);
+ $body.prepend("
");
+ }, 500);
+ });
+
// Als resultlist te breed is moet er wel een scrollbar onderin komen.
// Ietwat getruct alleen voor result-sets, anders willen gewone schermen
// niet altijd goed resizen van klein naar groot.
diff --git a/APPL/RES/res_search_plan_room.asp b/APPL/RES/res_search_plan_room.asp
index fa3a3ac846..ea68ebb83a 100644
--- a/APPL/RES/res_search_plan_room.asp
+++ b/APPL/RES/res_search_plan_room.asp
@@ -242,19 +242,11 @@ hour_px = res.hour_px(width_px-300, nr_days);
res_change();
});
<% } %>
- $(document).ready(function () {clearTimeout(window.bltimeid); $('#busyloading').hide() });
<%
- Response.Write("");
- // Na één seconde gaatie pas aan
- // Let op: vertrouw er niet op de we jQuery al hebben
- Response.Write("

");
- Response.Write("
");
- Response.Flush();
-
var buttons = [];
if (authparams.PRSwritelevel < 9 && authparams.ALGwritelevel < 9 && samedate)
buttons.push({ icon: "wijzigen.png", title: L("lcl_change"), action: 'res_change()', singlepress: true, id: "btnchange" });
diff --git a/APPL/Shared/default.csx b/APPL/Shared/default.csx
index 43edbd08ff..744878b6e3 100644
--- a/APPL/Shared/default.csx
+++ b/APPL/Shared/default.csx
@@ -1029,6 +1029,13 @@ padding-right: 15px!important;
width: 100%;
}
+.busyloading {
+ color: #888;
+ position:absolute;
+ left:100px;
+ top:50px;
+ z-index:999
+}
/*
* THE BUTTONS
*/
diff --git a/APPL/Shared/empty.asp b/APPL/Shared/empty.asp
index 97f56f40aa..c13938d371 100644
--- a/APPL/Shared/empty.asp
+++ b/APPL/Shared/empty.asp
@@ -20,7 +20,7 @@ if (Request.QueryString.Count == 0)
if (msg)
shared.simpel_page(L(msg));
else
- shared.simpel_page("");
+ shared.simpel_page(" ");
%>