diff --git a/BExIS.Modules.RBM.UI.csproj b/BExIS.Modules.RBM.UI.csproj
index 64e50c5..4e1109e 100644
--- a/BExIS.Modules.RBM.UI.csproj
+++ b/BExIS.Modules.RBM.UI.csproj
@@ -668,6 +668,8 @@
+
+
PublicSettingsSingleFileGenerator
diff --git a/Properties/PublishProfiles/BexisServer_BE-Website.pubxml b/Properties/PublishProfiles/BexisServer_BE-Website.pubxml
new file mode 100644
index 0000000..2a4e329
--- /dev/null
+++ b/Properties/PublishProfiles/BexisServer_BE-Website.pubxml
@@ -0,0 +1,18 @@
+
+
+
+
+ FileSystem
+ FileSystem
+ Release
+ Any CPU
+
+ True
+ False
+ C:\inetpub\wwwroot\BE-Website\Site\Areas\RBM
+ False
+
+
\ No newline at end of file
diff --git a/Views/Calendar/Calendar.cshtml b/Views/Calendar/Calendar.cshtml
index a2015f5..56b2ded 100644
--- a/Views/Calendar/Calendar.cshtml
+++ b/Views/Calendar/Calendar.cshtml
@@ -32,6 +32,7 @@
}
+ Fetching Data
+
From:
To:
@@ -55,6 +57,7 @@
border-width: 2px;
margin-top: 20px;
">
+
@@ -114,6 +117,7 @@
}
function getFunction(type, byUser = false) {
+ $('#Spinner').show();
return function (start, end, timezone, callback) {
var o = { st: start, ed: end, byUser: byUser};
@@ -125,6 +129,7 @@
data: JSON.stringify(o),
contentType: 'application/json; charset=utf-8',
success: function (doc) {
+
var events = [];
$.each(doc, function (key, value) {
var val = $.parseJSON(value[0]);
@@ -145,7 +150,7 @@
eventId: val['eventId']
});
});
-
+ $('#Spinner').hide();
callback(events);
//console.log(events);
}