0

我在 ModalPopupExtender 中嵌入了一个文本编辑器。它弹出,父页面被“涂黑”,并且弹出窗口按预期居中。问题是父页面上有许多控件绘制在 ModalPopup 之上。我已经用 z-index 尝试了很多东西,但似乎没有任何效果。

.modalPopup{position: absolute; background-color:#5F884C; border-width: 4px; border-color:#cccccc; border-style: solid; width: 700px; height: 330px; z-index: 9999}

在此处输入图像描述

如何让弹出编辑器在顶部?

4

2 回答 2

1

我会查看覆盖的其他项目的 z 索引。我不记得您应该在弹出样式上设置 z-index 。我认为它是在控制工具包中设置的。

尝试阅读此链接,因为这似乎是他们遇到的类似问题... ModalPopupExtender - 修改 z-index

于 2013-11-06T04:14:50.220 回答
0

Confirmed it was a z-index issue. Installed Google Chrome and used their dev tools to "inspect" elements in my site. I'd never seen these tools before, but found them astonishingly powerful at identifying all the specific attributes tied to elements of my site at runtime.

于 2013-11-12T18:34:09.853 回答