Tagged Questions

5
votes
1answer
117 views

ASP.NET: UpdateProgress doesn't work with controls that have ClientIDMode=“Static”

Look at this markup: <asp:UpdatePanel ID="Panel1" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:DropDownList ID="cboBox1" ClientIDMode="Static" ...
3
votes
2answers
145 views

How to display UpdateProgress at the center of a grid view with CSS?

Need to display Update Progress at the center of a Grid view placed in a Ajax Update Panel. Is there a way to place the Update progreass control at the center of the grid view (or else center of the ...
2
votes
4answers
910 views

Jquery dialog not working in masterpage?

I added below code in the masterpage. I am able to get alert("I am in onload Function");, but jQuery("uploadPic").dialog not working. The <div> portion showing on the page. I am using reference ...
2
votes
1answer
550 views

Update progress position?

My update progress displays under the update panel. Is there a way to display it near the control which caused the async postback? I have a very long form so users might not scroll all the way down ...
2
votes
2answers
210 views

Is it possible to associate an UpdateProgress with many UpdatePanel but not all?

I have 3 UpdatePanels on my page, and 1 UpdateProgress. I'd like it to be associated with 2 of the UpdatePanels but not the third one. The AssociatedUpdatePanelID property only allows for 1 ID, so ...
2
votes
2answers
1k views

UpdateProgress Control Remains Visible on Safari and Chrome

I am using the ASP.NET Ajax controls UpdatePanel and UpdateProgress. The idea of a the UpdateProgress control is to display a message while the page is performing a partial postback, then disappear ...
1
vote
1answer
470 views

Child UpdatePanel and parent UpdateProgress problem

I have a nested child and parent UpdatePanel. The problem is, when the child UpdatePanel is refreshed/posted, the UpdateProgress in parent fires up. How can I prevent this? The structure is like this: ...
1
vote
2answers
983 views

problem with dropdownlist updateprogress and updatepanel

The updateprogress doesnt show the gif. If the dropdownlist is inside updatepanel without trigger, it works. Any idea? <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true" ...
0
votes
1answer
37 views

ajax progress bar not working?

I am trying to present a ajax progress bar when a delete button is clicked. This delete button will do things and will take time to process.. The delete button is within a repeater. The code is below: ...
0
votes
1answer
26 views

UpdateProgress not closing when a query takes a long time

I am using the UpdateProgress ASP.NET control along with an UpdatePanel to get some data via a web service, update some content locally and show a spinner whilst doing so. The problem is that when ...
0
votes
2answers
27 views

Progress template in the middle of content template

I have a gridview in update panel and I am doing paging in that, I want update progress while paging <asp:UpdateProgress ID="upGvFinishProg" runat="server" AssociatedUpdatePanelID="upGvFinish" ...
0
votes
2answers
46 views

Cover updatepanel while updateprogress

How? I have cascading dropdowns, I want them to be un-clickable while the panel is updating (or at least appear to be). Preferably using jQuery, Hide UpdatePanel during UpdateProgress was how I was ...
0
votes
1answer
61 views

How to run Ajax loading image for Crystal Report

I have a Crystal Report in UpdatePanel. I want to use a ajax loading image when the crystalreportviewer loading data, but my code don't display the image. <asp:UpdatePanel ID="uppnlAll" ...
0
votes
3answers
712 views

Update progress inside update panel

i have two buttons inside a update panel.i need to trigger update progress and show a .gif image for each button click.when i press a button1 only the associated update progress should be displayed ...
0
votes
2answers
333 views

2 asp:updatepanel and 2 asp:updateprogress controls

I'm using two asp:updatepanel and 2 asp:updateprogress for them. Update progress shows correctly when I never use AssociatedUpdatePanelID with them, but if I use AssociatedUpdatePanelID the Progress ...
0
votes
0answers
330 views

Button click registered with ScriptManager not triggering the UpdateProgress in UpdatePanel

I have the main content of my page wrapped inside an UpdatePanel, with an UpdateProgress that kicks off an overlay and a progress bar on top of the page to show the user the page is loading. This is ...
0
votes
2answers
357 views

UpdateProgress Covers Update Panel

Is there any way to get an updateprogress to entirely cover an updatepanel ? (Asp.net .net 4)
0
votes
2answers
2k views

Hide UpdatePanel during UpdateProgress

I'm looking for the easiest possible way to hide an UpdatePanel while waiting for the submit response to come back. Stuff like described here - using Ajax Control Toolkit and the ...
0
votes
1answer
404 views

C# UpdateProgress which displays a variable from the running code?

I have an updateprogress in my aspx file, which has a "label control" in it with a text "Loading...", while I run my code, there is a "for loop" in my code. While this loop continues, I want to show ...
0
votes
1answer
634 views

How to: Make a Custom Updatepanel Control Which Contains Updateprogress In It

I use updatepanel and updateprogress in my project. Whenever I add updatepanel to a page, then I should add updateprogress too. Now I want to make a custom control that include both updatepanel and ...
0
votes
2answers
821 views

Auto Submit UpdatePanel and show UpdateProgress area

I want to auto submit my form and show the update progress area once it is submitted. I have tired adding 2 fucntions to the page: window.onload=function(){ __doPostBack('UpdatePanelId',''); } ...
0
votes
1answer
700 views

Updateprogess image is not ending or disappearing or vanishing or hiding after Response.Redirect is called

I have an updateprogress bar, displaying a text "loading". After I hit a imagebutton (I am using it for downloading a file) inside my update panel, with a click event, It calls click function , and ...