I am using jquery UI dialog with Grails. I have some input text boxes on the dialog box. I enter some data, click on save, everything works fine (the data gets saved properly) and closes itself. But on the parent page when I open the dialog box again, the old data is only displayed. This is happening in IE8. I have to refresh the server to enable the dialog box to show the updated values. I am using something like
$("#divid").load(${createLink....}).dialog('open');
The data gets refreshed properly in FF. Why is this happening? Also I am using modal:true..
Thanks a lot