16

我正在尝试使用 asp.net mvc3 创建一个。

我有一个带有一些选项的下拉列表。我想要的是注入页面的不同部分视图,具体取决于下拉列表中的选择。

但。我不希望这依赖于提交操作。它应该起作用,以便在您从选择列表中选择后立即加载局部视图。

我有这个代码:

@using (Ajax.BeginForm("Create_AddEntity", new AjaxOptions { 
    UpdateTargetId = "entity_attributes", 
    InsertionMode = InsertionMode.Replace
    }
))
{
        <div class="editor-label">
            @Html.Label("Type")
        </div>
        <div class="editor-field">
            @Html.DropDownList("EntityTypeList", (SelectList)ViewData["Types"])
        </div>

        <div id="entity_attributes"></div>
        <p>
            <input type="submit" value="Create" />
        </p>
}

但是我不知道当下拉列表选择发生变化时如何触发这个部分视图加载。

这一点是不同“实体类型”的形式不同。因此将加载不同的局部视图,具体取决于下拉选择。

有人有任何指示吗?

4

2 回答 2

38

假设以下是您要插入部分视图的视图。

<html>
    <head><head>
    <body>
        <!-- Some stuff here. Dropdown and so on-->
        ....

        <!-- Place where you will insert your partial -->
        <div id="partialPlaceHolder" style="display:none;"> </div>
    </body>

</html>

在下拉列表的更改事件中,通过 jquery ajax 调用获取部分内容并将其加载到占位符。

/* This is change event for your dropdownlist */
$('#myDropDown').change( function() {

     /* Get the selected value of dropdownlist */
     var selectedID = $(this).val();

     /* Request the partial view with .get request. */
     $.get('/Controller/MyAction/' + selectedID , function(data) {

         /* data is the pure html returned from action method, load it to your page */
         $('#partialPlaceHolder').html(data);
         /* little fade in effect */
         $('#partialPlaceHolder').fadeIn('fast');
     });

});

在 jquery 上方 /Controller/MyActionin 的控制器操作中,返回您的部分视图。

//
// GET: /Controller/MyAction/{id}

public ActionResult MyAction(int id)
{
   var partialViewModel = new PartialViewModel();
   // TODO: Populate the model (viewmodel) here using the id

   return PartialView("_MyPartial", partialViewModel );
}
于 2012-08-02T09:45:51.433 回答
0

将以下代码添加到项目(布局)的标题中。将“组合框”添加到要触发围绕它的表单的任何组合框(选择框)。

$(document).ready(function () {
    $('.formcombo').change(function () {
        /* submit the parent form */
        $(this).parents("form").submit();
    });
});
于 2013-09-11T18:11:26.650 回答