在 Jquery 模态中打开视图
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该仅使用 Fancybox 或您喜欢的任何模态插件的链接。使用 fancybox,您的列将如下所示:
您应该使用如下 JavaScript 块来初始化 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:
And you should initialize, for instance, Fancybox, with a JavaScript block like this:
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.