web-dev-qa-db-ja.com

MVC C#モーダルポップアップ

わかりましたので、この投稿の提案に従って、コントローラを使用してページのモーダルポップアップを適切に呼び出す方法を理解しようとしています

ASP.NET MVCモーダルダイアログ/ポップアップのベストプラクティス

ちょっとこれを使用しました:

http://microsoftmentalist.com/2011/09/14/asp-net-mvc-13-open-window-or-modal-pop-up-and-fill-the-contents-of-it- from-the-controller-method /

ドロップダウンリストがあるビューがあります。ユーザーが探しているアイテム/値が見つからない場合、コントローラーを呼び出してポップアップページを返すはずの値(新しい値リンクを提案)を提案できます。その中にいくつかのフィールドがあります。

これがビュー上のオブジェクトです:

<script type="text/javascript">

        loadpopup = function () 
        {  
window.showModalDialog(‘/NewValue/New′ , "loadPopUp", ‘width=100,height=100′); 
        } 

    </script> 


<%: Html.DropDownList(model => model.ValueId, new selectlist........... %>
<%: Html.ActionLink("Suggest Value", "New", "NewValue", null, new { onclick = 'loadpopup()') %>

ページを返すために使用する予定のコントローラー:

public class NewValueController : Controller{
   public Actionresult New(){
      return View();
   }
}

今、行き詰まっています。フォーマットできるページを返したいのですが、文字列を返す必要がありますか?代わりにaspx(私が使用するエンジン)を返すことができません。

どの方向に行くべきかについてのアドバイスは非常にありがたいです。

ありがとう!

8
gdubs

ポップアップに jquery UI Dialog を使用できます。ここで小さな設定をしましょう。

メインフォームのビューモデルがあります。

public class MyViewModel
{
    public string ValueId { get; set; }
    public IEnumerable<SelectListItem> Values 
    { 
        get 
        {
            return new[]
            {
                new SelectListItem { Value = "1", Text = "item 1" },
                new SelectListItem { Value = "2", Text = "item 2" },
                new SelectListItem { Value = "3", Text = "item 3" },
            };
        } 
    }

    public string NewValue { get; set; }
}

コントローラ:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View(new MyViewModel());
    }

    [HttpPost]
    public ActionResult Index(MyViewModel model)
    {
        return Content("thanks for submitting");
    }
}

とビュー(~/Views/Home/Index.aspx):

<%@ Page 
    Language="C#" 
    MasterPageFile="~/Views/Shared/Site.Master" 
    Inherits="System.Web.Mvc.ViewPage<AppName.Models.MyViewModel>" 
%>

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">

    <% using (Html.BeginForm()) { %>
        <%= Html.DropDownListFor(x => x.ValueId, Model.Values) %>
        <br/>
        <%= Html.EditorFor(x => x.NewValue) %>
        <%= Html.ActionLink("Suggest Value", "New", "NewValue", null, new { id = "new-value-link" }) %>
        <button type="submit">OK</button>
    <% } %>

    <div id="dialog"></div>

</asp:Content>

次に、ポップアップを処理します。そのためのビューモデルを定義します。

public class NewValueViewModel
{
    public string Foo { get; set; }
    public string Bar { get; set; }
}

コントローラ:

public class NewValueController : Controller
{
    public ActionResult New()
    {
        return PartialView(new NewValueViewModel());
    }

    [HttpPost]
    public ActionResult New(NewValueViewModel model)
    {
        var newValue = string.Format("{0} - {1}", model.Foo, model.Bar);
        return Json(new { newValue = newValue });
    }
}

および対応する部分ビュー(~/Views/NewValue/New.ascx):

<%@ Control 
    Language="C#" 
    Inherits="System.Web.Mvc.ViewUserControl<AppName.Models.NewValueViewModel>" 
%>

<% using (Html.BeginForm(null, null, FormMethod.Post, new { id = "new-value-form" })) { %>
    <%= Html.EditorFor(x => x.Foo) %>
    <%= Html.EditorFor(x => x.Bar) %>
    <button type="submit">OK</button>
<% } %>

あとは、すべてをつなぐJavaScriptを少し書くだけです。 jqueryとjquery uiを含めます。

<script src="<%: Url.Content("~/Scripts/jquery-1.5.1.min.js") %>" type="text/javascript"></script>
<script src="<%: Url.Content("~/Scripts/jquery-ui-1.8.11.js") %>" type="text/javascript"></script>

コードを含むカスタムJavaScriptファイル:

$(function () {
    $('#new-value-link').click(function () {
        var href = this.href;
        $('#dialog').dialog({
            modal: true,
            open: function (event, ui) {
                $(this).load(href, function (result) {
                    $('#new-value-form').submit(function () {
                        $.ajax({
                            url: this.action,
                            type: this.method,
                            data: $(this).serialize(),
                            success: function (json) {
                                $('#dialog').dialog('close');
                                $('#NewValue').val(json.newValue);
                            }
                        });
                        return false;
                    });
                });
            }
        });
        return false;
    });
});
17
Darin Dimitrov