Tagged Questions
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
155 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
67 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
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 ...