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
230 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 ...
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
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 ...