我有一个用于恢复电子邮件模板的按钮。因此,您可以选择是否要恢复原始模板,或者您将坚持使用默认模板中的更改。将显示确认对话框。但是,如果我点击取消,那么模板也会转到他原来的默认值,不一定是。
这是按钮的jQuery:
window.location.href = '@Url.Action("Wijzigen", "EmailTemplate", new { area = "Salaris", id = Model.Id, orgToepassen = true })&type=' + '@(Model.Type)';
这是确认对话框的jQuery:
$('#herstel-standaard').click(function () {
if (window.confirm('Weet u het zeker?')) {
$('#content').load($(this).attr('href'));
}
window.location.href = '@Url.Action("Wijzigen", "EmailTemplate", new { area = "Salaris", id = Model.Id, orgToepassen = true })&type=' + '@(Model.Type)';
});
这是按钮的HTML:
@ButtonHelper.Button(ButtonType.Default, ButtonSize.Large, "Herstel standaard mail", id: "herstel-standaard", icon: "glyphicon-refresh")