如何在 ASP.NET MVC 中创建美观、实用的叠加层(例如 SharePoint 2010 中使用的叠加层)?
我尝试在我的 MVC 应用程序中添加 jquery 模式对话框来提示用户输入,但我的代码变得非常草率,只是提示用户输入 1 个信息字段。
SharePoint 2010 具有非常实用的ajax 覆盖,有些甚至包括办公室功能区。
这是如何完成的?我可以使用哪些库来打开整个表单作为页面顶部的 ajax 叠加层?
非常感谢!
I have tried in my MVC app to add jquery modal dialogs to prompt the user for input, but my code turned really sloppy just prompting the user for 1 field of information.
SharePoint 2010 has ajax overlays that are very functional, some even include the office ribbon.
How is this being done? What libraries can I use where I can open up entire forms as ajax overlays on top of a page?
Thanks so much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想显示完整的表单,请使用 http://plugins.jquery.com/project/jquery- framedialog - 我还没有在标准 SharePoint 表单中尝试过它,但如果您将返回 url 设置为将关闭对话框的页面,它应该可以工作。
如果您只需要一个更好看的 JavaScript 提示,请使用标准 jQuery UI 对话框并为您使用它的表单定义 html。
使用 MVC,您可能会发现使用 ajax 发布表单最简单(有一个 jquery 方法来序列化表单,尽管我不记得确切的语法),而不是发布 iframe - 这会为您提供一个有点回调结构如果您正在使用对话框执行更复杂的操作,则更容易使用。
If you want to show complete forms, use http://plugins.jquery.com/project/jquery-framedialog - I haven't tried it with standard SharePoint forms, but it should work if you set the return url to a page that will close the dialog.
If you just need a nicer looking javascript prompt, use the standard jQuery UI dialog and define the html for the form where you are using it.
With MVC you may find it easiest to post the form using ajax (there is a jquery method to serialize a form, though I don't recall the exact syntax) rather than posting the iframe - that gets you a callback structure that is a bit easier to work with if you are doing more complex stuff with the dialogs.