@{ Layout = "~/Views/Shared/_FunctionLayout.cshtml"; } @model IEnumerable @using (Html.BeginForm("ExportPartialMailNotifications", "Misc", FormMethod.Post, new { id = "mailNotificationExportForm" })) { @Html.Hidden("Format") } @Html.Partial("~/Views/Misc/_MailNotificationGridPartial.cshtml", Model) @Html.Partial("~/Views/Shared/_PopupDialogYesNo.cshtml", new GreenTree.Nachtragsmanagement.Web.Models.Global.YesNoDialogModel { PopupName = "devPopupControlDeleteMailNotification", Content = "
Sind Sie sicher, dass Sie die Benachrichtigung " + "\"{mailNotification}\"?
", HeaderText = "\"{mailNotification}\" löschen", YesFunction = "function (s, e) { deleteMailNotification(); }", YesButtonName = "devButtonDeleteMailNotificationYes", NoButtonName = "devButtonDeleteMailNotificationNo" })