@{ Layout = "~/Views/Shared/_FunctionLayout.cshtml"; } @model IEnumerable @Html.Partial("~/Views/Config/_ConfigItemGridPartial.cshtml", Model) @Html.Partial("~/Views/Shared/_PopupDialogYesNo.cshtml", new GreenTree.Nachtragsmanagement.Web.Models.Global.YesNoDialogModel { PopupName = "devPopupControlDeleteConfigItem", Content = "
Sind Sie sicher, dass Sie die Benachrichtigung " + "\"{configItem}\" löschen möchten?
", HeaderText = "\"{configItem}\" löschen", YesFunction = "function (s, e) { deleteConfigItem(); }", YesButtonName = "devButtonDeleteConfigItemYes", NoButtonName = "devButtonDeleteConfigItemNo" }) @Html.DevExpress().PopupControl(p => { p.Name = "devPopupControlFullName"; p.ShowHeader = false; p.ShowFooter = false; p.ShowShadow = false; p.PopupAnimationType = AnimationType.None; p.Width = new Unit(300, UnitType.Pixel); p.SetContent("
"); p.CloseAction = CloseAction.OuterMouseClick; p.PopupHorizontalAlign = PopupHorizontalAlign.LeftSides; p.PopupVerticalAlign = PopupVerticalAlign.Below; }).GetHtml()