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
}
...
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
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
123 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
1answer
756 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 ...