2015-12-05 53 views
0

我使用引導控件.i設置進度條樣式z-index : 100000;。 但沒有進度吧全部控制.how能做到嗎? 如何強制更新進度控制出現在頂部?如何在所有控件上顯示更新進度控制

<asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" LoadScriptsBeforeUI="true" ScriptMode="Release" runat="server" /> 
    <asp:UpdateProgress ID="uppMain" runat="server"> 
     <ProgressTemplate> 
      <div style="position: absolute; background: url(/Style/Engine/images/black-bg.png); top: 0px; left: 0px; width: 100%; height: 100%;"> 
       <div style="width: 150px; height: 20px;z-index:100002 !important; position: fixed; left: 50%; margin-left: -75px; top: 50%; margin-top: -10px; text-align: center;"> 
        <img id="imgLoading" alt="" src="/Style/Engine/images/loading.gif" /> 
       </div> 
      </div> 
     </ProgressTemplate> 
    </asp:UpdateProgress> 
<asp:UpdatePanel runat="server" ID="UpdatePanel1"> 
     <ContentTemplate> 
       ....... 
     </ContentTemplate> 
    </asp:UpdatePanel> 
+0

請發佈您的完整代碼或提供演示。 – Alex

+0

@shahrox你需要添加'AssociatedUpdatePanelID =「UpdatePanel1」'到'uppmain' – Webruster

+0

.............謝謝 – shahroz

回答

1

很難回答僅查看提供的代碼。您可以使用開發人員工具欄/螢火蟲輕鬆檢查控制器的z-index,這些工具欄/螢火蟲即將到達updateprogress上方,並給予z-index高於DIV的範圍

您可以嘗試的一件事是,將z-index指定給updateprogress中的第一個DIV控制(該div與「位置:絕對」)

相關問題