想要在 ModalPopExtender 之上显示更新进度控件

发布于 2024-12-25 18:26:43 字数 132 浏览 2 评论 0原文

我有一个带有更新面板和更新进度控件的内容页面。当页面回发时,更新进度控件会正确显示。我现在已向页面添加了一个模态弹出扩展器。当从模态弹出扩展器触发回发时,将显示更新进度控件,但位于模态弹出扩展器下方。

如何强制更新进度控件显示在顶部?

I have a content page with an Update Panel and a Update Progress controls. The Update Progress control is properly displayed when the page posts back. I have now added a Modal Popup Extender to the page. When a post back is fired from the Modal Popup Extender, the Update Progress control is displayed, but underneath the Modal Popup Extender.

How can I force the Update Progress control to appear on top?

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

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

发布评论

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

评论(1

不如归去 2025-01-01 18:26:44

通过 CSS 增加 UpdateProgressz-index

.progress
{
    z-index: 100002 !important;
}

编辑:添加 !important 规则,只是为了安全起见边。

Increase the z-index of the UpdateProgress via CSS.

.progress
{
    z-index: 100002 !important;
}

Edit: Added !important rule, just to be on the safe side.

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