When I have a regular textbox in a UpdatePanel (not an ASP.NET control) with some JavaScript events on it, after the UpdatePanel updates my events are gone. Is there a way to re-attach my events after the update? (Preferably without putting my events inline).
|
|
|
|
|
|
|
You can use the endRequest event of the PageRequestManager class. |
||
|
|
|
|
The events are gone because your textbox is a new element in the DOM (after the UpdatePanel refresh). As said by korchev, use the endRequest event to re-attach the eventhandlers. |
||
|
|
|
|
You can have a |
||
|
|
