使用 jquery 进行模态 asp.net ajax udate 进度
我的窗体上有 asp.net UpdatePanel 和 UpdateProgress 控件。我正在尝试通过 jQuery BlockUI Plugin 或 jquery 本身使更新进度模式化。
$(document).ajaxStart($.blockUI).ajaxStop($.unblockUI);
不起作用,因为我正在使用 UpdatePanel 和服务器端 ASP.NET ajax 。
我注意到在部分回发中只是 UpdateProgress disply 样式从 display: none
更改为 display: block
所以我想知道 jquery 中是否有任何样式更改事件可以调用$.blockUI();
或任何其他解决方案,以便使用 jQuery BlockUI 插件 与asp.net updatepanel 和 UpdateProgress
I have asp.net UpdatePanel and UpdateProgress controls on my form . I'm trying to make Update progress modal by jQuery BlockUI Plugin or jquery itself .
the $(document).ajaxStart($.blockUI).ajaxStop($.unblockUI);
doesn't work , Because I'm using UpdatePanel and Server-Side ASP.NET ajax .
I've noticed in Partial postback just UpdateProgress disply style change from display: none
to display: block
So I'm wondering if there is any style changing event in jquery to call $.blockUI();
or any other solution in order to use jQuery BlockUI Plugin with asp.net updatepanel and UpdateProgress
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将此脚本放在 ScriptManager 控件下方:
超时可以避免因非常短的异步请求而阻塞页面。
Place this script below the ScriptManager control:
Timeout allows to avoid blocking page for very short async requests.