Tagged Questions

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 } ...
1
vote
1answer
927 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
130 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
101 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
66 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
3answers
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 ...