@{ Layout = "~/Views/Shared/_FunctionLayout.cshtml"; } @model IEnumerable @using (Html.BeginForm("ExportPartialAppendices", "Appendix", FormMethod.Post, new { id = "appendixExportForm" })) { @Html.Hidden("Format") } @Html.Partial("~/Views/Appendices/_AppendixGridPartial.cshtml", Model) @Html.Partial("~/Views/Shared/_PopupDialogYesNo.cshtml", new GreenTree.Nachtragsmanagement.Web.Models.Global.YesNoDialogModel { PopupName = "devPopupControlDeleteAppendix", Content = "
Sind Sie sicher, dass Sie den Nachtrag \"{appendix}\" löschen möchten?
", HeaderText = "\"{appendix}\" löschen", YesFunction = "function (s, e) { deleteAppendix(); }" })