我有一个带有一些级联下拉菜单和一个提交按钮的网络表单。单击提交按钮,我将从数据库中获取数据。整个网络表单位于更新面板中,包括按钮。
事情就是这样,我试图在webform中显示Update Progress。我能够做到但无论如何都无法隐藏它。因此,我尝试将更新进度放入a并尝试使用jquery隐藏div。
我在第一次加载时隐藏了div有点成功。但是后来如果我在下拉列表中做了一些选择并再次提交数据,则更新进度没有显示出来。我的意思是,最初在第一次加载页面和点击事件时,更新进度显示并隐藏。但在级联下拉列表中进行一些选择后,页面将部分回发,并且更新进度未显示再次第二次点击或其他。
除了页面的新鲜负载之外,在其他方案中发生了部分回发。因此,在部分回发方案期间,更新进度未显示。
注意: - webform是母版页的内容页面......
这里我发布了jquery和Code。请看看并纠正我在哪里做错了,请提出正确的建议。
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script type="text/javascript">
$(function() {
setTimeout(function() { $("#Progress").fadeOut(1500); }, 6000)
$('#btnSearch').click(function() {
$('#Progress').show();
setTimeout(function() { $("#Progress").fadeOut(1500); }, 6000)
})
})
</script>
<asp:UpdatePanel ID="updatepanel1" runat="server">
<ContentTemplate>
<h2 style="text-decoration: underline; font-family: 'Courier New'; text-align: center;"
align="center">
Plantation KML File</h2>
<asp:Panel ID="pnlloc" runat="server" BorderColor="#365672" BorderStyle="Double"
Height="150px" HorizontalAlign="Center" BackColor="LightSteelBlue" Width="85%">
<br />
<table align="center" class="style1" style="height: 116px; width: 94%">
<tr>
<td class="style68">
<asp:Label ID="lblCircle" runat="server" Text="Circle"></asp:Label>
</td>
<td class="style115">
</td>
<td class="style23">
<asp:DropDownList ID="ddCircle" runat="server" Width="150px">
</asp:DropDownList>
<asp:CascadingDropDown ID="ddCircle_CascadingDropDown" runat="server" BehaviorID="circleajax"
Category="Circle" Enabled="True" LoadingText="Loading Circles" PromptText="Select a Circle"
ServiceMethod="GetWLTRSFCircles" ServicePath="~/Common/WebService/GetMasters.asmx"
TargetControlID="ddCircle">
</asp:CascadingDropDown>
</td>
<td class="style23">
</td>
<td class="style67">
<asp:Label ID="lblDivision" runat="server" Text="Division"></asp:Label>
</td>
<td class="style116">
</td>
<td class="style110">
<asp:DropDownList ID="ddDivision" runat="server" Width="150px">
</asp:DropDownList>
<asp:CascadingDropDown ID="ddDivision_CascadingDropDown" runat="server" BehaviorID="divisionajax"
Category="Division" Enabled="True" LoadingText="Loading Divisions" ParentControlID="ddCircle"
PromptText="Select a Division" ServiceMethod="GetDivision" ServicePath="~/Common/WebService/GetMasters.asmx"
TargetControlID="ddDivision">
</asp:CascadingDropDown>
</td>
<td class="style110">
</td>
<td class="style38">
<asp:Label ID="lblRange" runat="server" Text="Range"></asp:Label>
</td>
<td class="style117">
</td>
<td class="style98">
<asp:DropDownList ID="ddRange" runat="server" Width="150px">
</asp:DropDownList>
<asp:CascadingDropDown ID="ddRange_CascadingDropDown" runat="server" BehaviorID="rangeajax"
Category="Range" Enabled="True" LoadingText="Loading Range " ParentControlID="ddDivision"
PromptText="Select a Range" ServiceMethod="GetRange" ServicePath="~/Common/WebService/GetMasters.asmx"
TargetControlID="ddRange">
</asp:CascadingDropDown>
</td>
</tr>
<tr>
<td class="style68">
<asp:Label ID="lblSection" runat="server" Text="Section"></asp:Label>
</td>
<td class="style115">
</td>
<td class="style23">
<asp:DropDownList ID="ddSection" runat="server" Width="150px">
</asp:DropDownList>
<asp:CascadingDropDown ID="ddSection_CascadingDropDown" runat="server" Category="Section"
Enabled="True" LoadingText="Loading Sections" ParentControlID="ddRange" PromptText="Select Section"
ServiceMethod="GetSection" ServicePath="~/Common/WebService/GetMasters.asmx"
TargetControlID="ddSection">
</asp:CascadingDropDown>
</td>
<td class="style23">
</td>
<td class="style67">
<asp:Label ID="lblBeat" runat="server" Text="Beat"></asp:Label>
</td>
<td class="style116">
</td>
<td class="style110">
<asp:DropDownList ID="ddBeat" runat="server" Width="150px">
</asp:DropDownList>
<asp:CascadingDropDown ID="ddBeat_CascadingDropDown" runat="server" Category="Beat"
Enabled="True" LoadingText="Loading Beats" ParentControlID="ddSection" PromptText="Select Beat"
ServiceMethod="GetBeat" ServicePath="~/Common/WebService/GetMasters.asmx" TargetControlID="ddBeat">
</asp:CascadingDropDown>
</td>
<td class="style110">
</td>
<td class="style38">
</td>
<td class="style117">
</td>
<td class="style98">
</td>
</tr>
<tr>
<td class="style68">
<asp:Label ID="lblYear" runat="server" Text="Year"></asp:Label>
</td>
<td class="style115">
</td>
<td class="style23">
<asp:DropDownList ID="ddPlntYear" runat="server" Width="150px">
<asp:ListItem Value="0">Select Year</asp:ListItem>
<asp:ListItem>2015</asp:ListItem>
</asp:DropDownList>
</td>
<td class="style23">
</td>
<td class="style67">
</td>
<td class="style116">
</td>
<td class="style110">
</td>
<td class="style110">
</td>
<td class="style38">
</td>
<td class="style117">
</td>
<td class="style98">
</td>
</tr>
</table>
<br />
</asp:Panel>
<br />
<div align="center">
<asp:Button ID="btnSearch" runat="server" Height="32px" Text="Download" Width="106px"
BackColor="#365672" BorderStyle="Solid" BorderWidth="1px" Font-Bold="True" Font-Italic="True"
ForeColor="White" OnClick="btnSearch_Click1" />
</div>
<br />
<asp:Label ID="lblMsg" runat="server"></asp:Label>
<br />
</ContentTemplate>
</asp:UpdatePanel>
<div id="Progress">
<asp:UpdateProgress runat="server" ID="PageUpdateProgress" AssociatedUpdatePanelID="updatepanel1"
DisplayAfter="3" DynamicLayout="False">
<ProgressTemplate>
<img alt="Generating KML File" src="Images/progressbar.gif" />
</ProgressTemplate>
</asp:UpdateProgress>
</div>
答案 0 :(得分:2)
<script type="text/javascript">
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_initializeRequest(InitializeRequest);
function InitializeRequest(sender, args) {
var updateProgress = $get('UpdateProgress1');
var postBackElement = args.get_postBackElement();
if (postBackElement.id == '<%= Button1.ClientID %>') {
updateProgress.control._associatedUpdatePanelId = 'dummyId';
}
else{
updateProgress.control._associatedUpdatePanelId = null;
}
}
</script>
答案 1 :(得分:1)
按如下方式更改jquery
代码:
<script type="text/javascript">
$(function() {
setTimeout(function() { $("#Progress").fadeOut(1500); }, 6000)
$(document).on("click",'#btnSearch', function() {
$('#Progress').show();
setTimeout(function() { $("#Progress").fadeOut(1500); }, 6000)
})
})
</script>
这里我们使用event delegation
技术。由于更新面板;旧的html
正在由新版本更新。因此先前附加的event listener
正在被消灭。使用上述技术,listener
将附加到document
,并且如果在#btnSearch
html
答案 2 :(得分:1)
在JavaScript / jQuery中使用pageload
,如下所示
function pageLoad(sender, args) {
setTimeout(function () { $("#Progress").fadeOut(1500); }, 6000)
$('#btnSearch').click(function() {
$('#Progress').show();
setTimeout(function () { $("#Progress").fadeOut(15000); }, 6000)
})
}
答案 3 :(得分:1)
您需要将代码放入endRequest
以及使用UpdatePanel
,所以请尝试以下代码:
<script type="text/javascript">
$(function() {
setTimeout(function() { $("#Progress").fadeOut(1500); }, 6000)
$('#btnSearch').click(function() {
$('#Progress').show();
setTimeout(function() { $("#Progress").fadeOut(1500); }, 6000)
})
})
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(function () {
setTimeout(function() { $("#Progress").fadeOut(1500); }, 6000)
$('#btnSearch').click(function() {
$('#Progress').show();
setTimeout(function() { $("#Progress").fadeOut(1500); }, 6000)
})
});
</script>