mshamber
10-29-2006, 06:09 AM
We have a commercial web application that is using struts/javascript.
The user interface of this application has 50 javascript/css/gif objects in it.
When submitting data to the application it creates a child window form. When the user is done entering data they post the child and it reloads the parent window to show the new row that was just created.
The problem is that it is using window.opener.location.reload();. While we only want to reload the 1 html object, the other 50 objects of the user interface are being verified from the server. For our users in Asia and Middle East the IMS checks take over 40 seconds.
Is there a function that will just get the html object from the server again without calling full reload?
The user interface of this application has 50 javascript/css/gif objects in it.
When submitting data to the application it creates a child window form. When the user is done entering data they post the child and it reloads the parent window to show the new row that was just created.
The problem is that it is using window.opener.location.reload();. While we only want to reload the 1 html object, the other 50 objects of the user interface are being verified from the server. For our users in Asia and Middle East the IMS checks take over 40 seconds.
Is there a function that will just get the html object from the server again without calling full reload?