English 中文(简体)
Bootstrap模式:加载所提供ID的数据
原标题:Bootstrap modal: load data for supplied ID

我有一个Bootstrap模式,可以从不同的超链接启动,每个超链接都提供另一个ID。

但我想要的是,每次启动模态时,它都会填充传递给模态的ID的数据。这是(简化的)代码(请参阅代码中的注释以获取解释):

@model ViewModels.BookcaseItem.EditBookcaseItemViewModel

<div class="modal hide modal-large" id="editBookDialog">
    @using (Html.BeginForm("Edit", "Bookcase", FormMethod.Post, new { @class = "form-horizontal" }))
    {
        <!-- this is where the ID will be passed to -->
        @Html.HiddenFor(x => x.Id)

        <div class="modal-body">
            <!-- there s actually a couple of editors and labels here, but that doesn t really matter -->
            @Html.EditorFor(x => x.Bla)
        </div>
        <div class="modal-footer">
            <a href="#" class="btn" data-dismiss="modal">Close</a>
            <input type="submit" value="Save" class="btn btn-primary" />
        </div>
    }
</div>

以下是用于启动模式并将ID传递给它的超链接之一:

<a href="#editBookDialog" data-toggle="modal" data-id="@bookcaseItem.Id" title="Edit this item" class="open-EditBookDialog"></a>

最后但同样重要的是JQuery部分实际传递ID:

$(document).on("click", ".open-EditBookDialog", function () {
    var myBookcaseItemId = $(this).data( id );
    $(".modal #Id").val(myBookcaseItemId);
    $( #editBookDialog ).modal( show );
});

让我们假设有一个签名为ActionResult Edit(字符串id)的方法,它将数据返回到放置模态的PartialView。

模态已经嵌入到包含所有超链接的页面中,只是默认情况下不可见。

我只是不知道如何根据传递的ID用不同的数据填充它。

最佳回答

您可以使用AJAX通过控制器操作从服务器加载新数据:

$(function() {
    $(document).on( click ,  .open-EditBookDialog , function () {
        var myBookcaseItemId = $(this).data( id );
        // send an AJAX request to fetch the data
        $.get(this.href, { id: myBookcaseItemId }, function(data) {
            $( #editBookDialog ).html(data).modal( show );
        });
        return false;
    });
});

现在很明显,您应该修改应该打开对话框的锚点,使其s href指向编辑控制器操作:

@Html.ActionLink(
    "Some text", 
    "Edit", 
    null, 
    new {
        data_toggle = "modal",
        data_id = bookcaseItem.Id,
        title = "Edit this item",
        @class = "open-EditBookDialog"
    }
)
问题回答

暂无回答




相关问题
WebForms and ASP.NET MVC co-existence

I am trying to make a WebForms project and ASP.NET MVC per this question. One of the things I ve done to make that happen is that I added a namespaces node to the WebForms web.config: <pages ...

Post back complex object from client side

I m using ASP.NET MVC and Entity Framework. I m going to pass a complex entity to the client side and allow the user to modify it, and post it back to the controller. But I don t know how to do that ...

Create an incremental placeholder in NHaml

What I want to reach is a way to add a script and style placeholder in my master. They will include my initial site.css and jquery.js files. Each haml page or partial can then add their own required ...

asp.net mvc automapper parsing

let s say we have something like this public class Person { public string Name {get; set;} public Country Country {get; set;} } public class PersonViewModel { public Person Person {get; ...

structureMap mocks stub help

I have an BLL that does validation on user input then inserts a parent(PorEO) and then inserts children(PorBoxEO). So there are two calls to the same InsertJCDC. One like this=>InsertJCDC(fakePor)...

ASP.NET MVC: How should it work with subversion?

So, I have an asp.net mvc app that is being worked on by multiple developers in differing capacities. This is our first time working on a mvc app and my first time working with .NET. Our app does not ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

热门标签