Tagged Questions
The pagerequestmanager tag has no wiki summary.
3
votes
2answers
1k views
How to execute javascript once an update panel refreshes (Can't get Sys.WebForms.PageRequestManager.getInstance().add_endRequest(); to work)
I'm trying to run javascript once an update panel has refreshed. I've read a few places that you can use code similar to this:
function codeToRun() {
//Code Here
}
...
2
votes
1answer
227 views
Javascript is not working when used with UpdatePanel
I placed the following code in two pages.
A simple aspx page, there it worked well.
A page contains a lot of controls and Update Panels. There the code
did not work. So I experimented with ...
1
vote
1answer
185 views
ASP.NET - Handle redirect after async post back
I have an ASP.NET web application that uses Update Panels.
The web application is integrated in a SiteMinder SSO environment.
The problem occurs when Siteminder thinks it is time to re-authenticate ...
1
vote
1answer
899 views
ScriptManager1.AsyncPostBackErrorMessage not showing error message
I've always used the following two bits of code (which use to work) to catch Ajax asyncPostBackErrors.
<asp:ScriptManager ID="ScriptManager1" runat="server" ...
1
vote
3answers
1k views
Check what control initiated AJAX Request
asp.net 2.0 / jQuery / AJAX
<script type="text/javascript">
//updated to show proper method signature
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(hideMessage);
...
0
votes
0answers
52 views
hidden variable value not getting updated in partial page update mode
I am trying to maintain state of javascript object across postbacks. I am facing issues while working in partial page update mode.
I used the PageRequestManager class and subscribed to ...
0
votes
0answers
84 views
Sys.webForms.PageRequestManager is null on IE6 prod, but works fine in IE6 stage
I have a weird situation with PageRequestManager on IE6 production environment, which works good on IE6 stage environment.
The error states "Sys.webForms.PageRequestManager is null or not an object" ...
0
votes
1answer
79 views
sender._postBackSettings.sourceElement is undefined
This is what I'm trying to do -
Using jQuery when the document is ready and if the page is not postback I issue a manual postback for an updatepanel to retrieve data from a database.
While the ...
0
votes
0answers
124 views
PageRequestManager EndRequest in JavaScript - How to obtain ID of control which initialized request?
I have the following scenario: User is able to drag-and-drop controls onto the page. Whenever the user drops a control on the page, I queue up the event and display a loading panel. I only process one ...
0
votes
0answers
53 views
Add an exception on a beginRequest
Im working with ASP .NET VB and JQuery (lastest version) with UI (lastest version).
I open a JQuery UI Dialog everytime a beginrequest began and I hide it everytime on endRequest.
So far so good, but ...
0
votes
1answer
757 views
C# UpdatePanel Update seems to be working in Firefox but not IE
I've got a page with several Update Panels on it. The first has a panel with a gridview which has an event to close the panel and update the UpdatePanel - then populate a control in a second ...
0
votes
2answers
2k views
Assyncronous interaction using Sys WebForms PageRequestManager
I'm trying to display a panel to the user when an asynchronous call is made, but only if that happend from a specific call.
using the normal "get control" script I have mine like:
function ...
0
votes
2answers
2k views
jQuery's $() function always returns 'undefined' with AJAX
i've noticed that popup shows BEFORE text gets updated in the textbox, i guess js gets called before the page gets rendered ... that would explain the 'undefined' popup ... how do i make sure js gets ...