vote up 0 vote down star

I have a DIV in which I have a asp:repeater which, based on data, puts information in this div. I then use Jquery's UI dialog to display the data to the user via a button click. This all works swimmingly.

So, I want to be able to add records to the data which populates the repeater. I have another part of the screen where people can enter this data, and it is saved to the database using an ajax call. This, too, works swimmingly.

I then want to update the data on my dialog box, without having to do a full postback to the server. So, this is normally pretty easy. I put my div into an UpdatePanel, and from Jquery initiate a __doPostBack. which then refreshes the data, which too, works swimmingly up to a point.

Once the __doPostBack is complete, the div is no longer hidden. It is now displayed on my page (with the updated data mind you), but the javascript i use to show the dialog, now no longer works.

Some investigation shows that:

  1. On initial load of the page, the javascript which tells jquery to create a dialog from a div takes the div from wherever it is on the form, and appends it to the body element.
  2. When the update panel posts back, the div is recreated, but the javascript to turn it into a dialog either isn't executed again (which I can understand... we haven't done a full load of the page, so the javascript doesnt execute again.
  3. This means that the div is no longer a 'dialog' but a simple div on my page, which is not what I want.

So, my questions are is:

Is there a way of injecting javascript aftr the updatepanels postback which will execute and create the dialog properly again?

flag

Unless __doPostBack (or updatepanels) can call a custom function back, I don't see how you could do that. – Kaze no Koe Nov 4 at 14:05
can we see the code doing this? – Brandon H Nov 4 at 20:18
I have worked around this. Instead of using an updatepanel to refresh the contents of my grid, I return the HTML via a ajax call, and set the innerhtml of the div after the insert is complete. Works well, and no update panel required. – tardomatic Nov 5 at 9:19

1 Answer

vote up 0 vote down check

The solution would be not to use Updatepanel at all and just change the innerHTML of the div with data received through a jquery ajax call.

link|flag
thanks, as you can see in my comments, this is exactly what i ended up doing. – tardomatic Nov 6 at 12:26

Your Answer

Get an OpenID
or

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