Popup Shows Stale info over network

Hi

Could someone please help me, I have no idea what the problem could be. I have a main page that has a table and a popup page that shows information relevant to the row clicked on the main page.

When I run the program on the computer that the server runs on it works perfectly however when I connect from another computer on the network it always displays stale info in the poup window. I use java script to show the popup.

Thanks in advance for any help.

[485 byte] By [JonSAa] at [2007-11-27 4:16:59]
# 1

Hi

One more thing, my code to show the values on the popup page is in the pre render method and this only gets called the first time when running over the network. Is there a way to force it to call the pre render method everytime.

An earlier post said to change the javax.faces.STATE_SAVING_METHOD parameter to client. Tried this and then the program crashes.

Here is my code to open the popup:

var left=(screen.width/2)-(600/2);

var top= (screen.height/2)-(400/2);

mywindow=window.open('AddSubtask_1.jsp', 'mywindow','width=600,height=400, scrollbars=1,location=0,status=1,left='+left+', top='+top);

mywindow.focus();

JonSAa at 2007-7-12 9:23:34 > top of Java-index,Development Tools,Java Tools...
# 2
HiAdding this code to the java script popup code solves it: mywindow.location.reload(true); It does however slow the popup a little. Is there a better solution?
JonSAa at 2007-7-12 9:23:34 > top of Java-index,Development Tools,Java Tools...