Attaching a confirm dialog to OK button of PopupFormAction
How do I attach some of kind of a confirm dialog, jquery, js or even the Awe().Form(), to the OK button of a PopupFormAction?
Amar Duplantier
asked
at 17 Jan 2014
Answers
-
you can do it with an awe popup and form like this:
<%:Html.Awe().Form().FormClass("createMeal").Confirm(true).UseAjax(true).Success("suc") %>
in the create.ascx your form needs to have the createMeal class like this:
<%:Html.Awe().PopupActionLink().LinkText("create meal").Url(Url.Action("Create","SimpleMeals")).Button("Create","createmeal") %>
<script>
function createmeal() {
$('.createMeal').submit();
}
function suc() {
$('.createMeal').closest('.awe-popup').dialog('close');
}
</script><form action="<%:Url.Action("Create") %>" class="createMeal">
Omuanswered at 17 Jan 2014