vote up 2 vote down star

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

flag

50% accept rate

3 Answers

vote up 3 vote down check

You can use the endRequest event of the PageRequestManager class.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

You can have a setInterval() loop on document load that would search for the element in the update panel and if it didn't have the events, it can re-attach them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.