(localizer);
+
+ SetActiveLocalizerProvider(provider);
+ }
+ }
+}
\ No newline at end of file
diff --git a/BeWoPlanerMobil/Views/DevExpressScheduler/AptFltEmployeesPartial.cshtml b/BeWoPlanerMobil/Views/DevExpressScheduler/AptFltEmployeesPartial.cshtml
index da9bd3ddf..510581b50 100644
--- a/BeWoPlanerMobil/Views/DevExpressScheduler/AptFltEmployeesPartial.cshtml
+++ b/BeWoPlanerMobil/Views/DevExpressScheduler/AptFltEmployeesPartial.cshtml
@@ -116,7 +116,7 @@
-
@@ -137,7 +137,7 @@
@foreach(var team in Model.MyTeams)
{
- @team.Name
+ @team.Name
}
diff --git a/BeWoPlanerMobil/Views/DevExpressScheduler/CustomAppointmentDragToolTip.cshtml b/BeWoPlanerMobil/Views/DevExpressScheduler/CustomAppointmentDragToolTip.cshtml
index 5baea0937..277777de9 100644
--- a/BeWoPlanerMobil/Views/DevExpressScheduler/CustomAppointmentDragToolTip.cshtml
+++ b/BeWoPlanerMobil/Views/DevExpressScheduler/CustomAppointmentDragToolTip.cshtml
@@ -1,5 +1,4 @@
-@using BeWoPlanerMobil.Util
-
diff --git a/BeWoPlanerMobil/Views/DevExpressScheduler/SchedulerPagePartial.cshtml b/BeWoPlanerMobil/Views/DevExpressScheduler/SchedulerPagePartial.cshtml
index 0bef741d6..aa9564338 100644
--- a/BeWoPlanerMobil/Views/DevExpressScheduler/SchedulerPagePartial.cshtml
+++ b/BeWoPlanerMobil/Views/DevExpressScheduler/SchedulerPagePartial.cshtml
@@ -193,15 +193,9 @@
settings.CustomActionRouteValues = new { Controller = "DevExpressScheduler", Action = "CustomCallBackAction" };
settings.ClientSideEvents.ToolTipDisplaying = "onToolTipDisplaying";
- settings.OptionsToolTips.SetAppointmentToolTipTemplateContent(() =>
- {
- Html.RenderPartial("CustomAppointmentToolTipPartial");
- });
+ settings.OptionsToolTips.SetAppointmentToolTipTemplateContent(() => { Html.RenderPartial("CustomAppointmentToolTipPartial"); });
settings.OptionsToolTips.SetAppointmentMobileToolTipTemplateContent(() => { Html.RenderPartial("CustomAppointmentToolTipPartial"); });
- settings.OptionsToolTips.SetAppointmentDragToolTipTemplateContent(() =>
- {
- Html.RenderPartial("CustomAppointmentDragToolTip");
- });
+ settings.OptionsToolTips.SetAppointmentDragToolTipTemplateContent(() => { Html.RenderPartial("CustomAppointmentDragToolTip"); });
settings.OptionsCustomization.AllowInplaceEditor = UsedAppointmentType.None;
settings.OptionsCustomization.AllowDisplayAppointmentFlyout = false;
@@ -384,7 +378,9 @@
IsTask = container.Appointment.CustomFields["IsTask"] is true,
DueDate = container.Appointment.CustomFields["DueDate"] is DateTime dueDate ? dueDate : null,
CompletedDate = container.Appointment.CustomFields["CompletedDate"] is DateTime completedDate ? completedDate : null,
- OriginatorOid = (container.Appointment.CustomFields["Originator"] as CompactEmployeeDC)?.EmployeeOid
+ OriginatorOid = (container.Appointment.CustomFields["Originator"] as CompactEmployeeDC)?.EmployeeOid,
+ RecurrenceInfo = container.Appointment.RecurrenceInfo?.ToXml(),
+ RecurrenceIndex = container.Appointment.RecurrenceIndex
};
var appointmentModel = ViewData["EditableAppointmentModel"] != null ? (AppointmentModel)ViewData["EditableAppointmentModel"] : newModel;
diff --git a/BeWoPlanerMobil/Views/Main/SingleBookingPartial.cshtml b/BeWoPlanerMobil/Views/Main/SingleBookingPartial.cshtml
index 44fff1a78..488aeb2cc 100644
--- a/BeWoPlanerMobil/Views/Main/SingleBookingPartial.cshtml
+++ b/BeWoPlanerMobil/Views/Main/SingleBookingPartial.cshtml
@@ -275,7 +275,7 @@
var $target;
var targetIndex;
- // Prüfen ob die Tab-Ansicht sichtbar ist (mehrere Dokutypes vorhanden)
+ // Prüfen, ob die Tab-Ansicht sichtbar ist (mehrere Dokutypes vorhanden)
var $activeTabTextarea = $('#dokufelderTab .tab-pane.active textarea');
if ($activeTabTextarea.length > 0) {
// Das aktive Tab-Textarea verwenden; Index aus der ID auslesen (sb-doku-textarea-{i})
diff --git a/BeWoPlanerMobil/Views/Scheduler/SchedulerEmployeeSelectionPartial.cshtml b/BeWoPlanerMobil/Views/Scheduler/SchedulerEmployeeSelectionPartial.cshtml
index 84be628dd..8db0186d2 100644
--- a/BeWoPlanerMobil/Views/Scheduler/SchedulerEmployeeSelectionPartial.cshtml
+++ b/BeWoPlanerMobil/Views/Scheduler/SchedulerEmployeeSelectionPartial.cshtml
@@ -32,7 +32,7 @@
oidString: selectedEmployeeOids.toString()
},
() => {
- $("#one-day-scheduler-partial-container").load('@Url.Action("FetchAppointments", "Scheduler")');
+ @*$("#one-day-scheduler-partial-container").load('@Url.Action("FetchAppointments", "Scheduler")');*@
}
);
}
diff --git a/BeWoPlanerMobil/Views/Shared/_Layout.cshtml b/BeWoPlanerMobil/Views/Shared/_Layout.cshtml
index a59c56833..2afb79de7 100644
--- a/BeWoPlanerMobil/Views/Shared/_Layout.cshtml
+++ b/BeWoPlanerMobil/Views/Shared/_Layout.cshtml
@@ -81,6 +81,10 @@
+
+
@* CSS für den neuen Kalender-Tooltip *@