ASP.Net MVC を使用してアプリを作成しています
実際に DB からエントリを削除しようとしています。最初に確認メッセージが必要です。アクションが完了したら、PartialView を更新します。
これが私のコードです
<%= Ajax.ActionLink(
"Supprimer",
"Delete",
"Users",
new { item.ID },
new AjaxOptions {
Confirm= "confirmMethod",
UpdateTargetId = "usersListeID",
OnSuccess = "success"
}
)%>
問題は、確認オプションが単純な ajax メッセージであることです。独自のメッセージを使用したいです (作成に ajax と jQuery を使用したため、適切に構造化されています)。
function confirmMethod() {
$.msgBox({
title: "Demande de confirmation",
content: "Voulez-vous effectuer cette action?",
type: "confirm",
buttons: [{ value: "Oui" }, { value: "Non"}],
success: function (result) {
if (result == "Non") {
abort();
}
}
});}