在 Jquery 模态中打开视图

发布于 2024-11-17 15:33:47 字数 117 浏览 3 评论 0原文

我使用 Mvc Contrib 网格来表示数据,现在我想每当我单击该行的编辑列时,编辑视图都会在 jquery 模式中打开,

如何在模式中打开视图?

谢谢,

萨阿德·塔希尔

i m using Mvc Contrib grid to represent the data, now i want to whenever i click the edit column of the row the Edit view open in a jquery modal,

How can i open a View in Modal?

Thanks,

Saad Tahir

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

站稳脚跟 2024-11-24 15:33:47

您应该仅使用 Fancybox 或您喜欢的任何模态插件的链接。使用 fancybox,您的列将如下所示:

column.For(item => ActionLink("Edit", "EditAction", "EditController",
    new { id = item.Id }, new { @class = "edit-link" });

您应该使用如下 JavaScript 块来初始化 Fancybox,例如:

$(document).ready(function() {
    $('.edit-link').fancybox();
});

这将通过 ajax 在模式中打开 ~/EditController/EditAction。请记住,EditAction 应该返回部分视图,因为它将使用 ajax 加载。

You should just use the link with Fancybox, or whichever modal plug-in you prefer. With fancybox, your column would look something like this:

column.For(item => ActionLink("Edit", "EditAction", "EditController",
    new { id = item.Id }, new { @class = "edit-link" });

And you should initialize, for instance, Fancybox, with a JavaScript block like this:

$(document).ready(function() {
    $('.edit-link').fancybox();
});

This would open ~/EditController/EditAction through ajax in a modal. Just remember that EditAction should return a partial view, since it is going to be loaded with ajax.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文