Window.Open Does a Cache? How to direct URL to a parent?
I have a page with multiple grids. Clicking on the main grid should navigate to a new webpage. I use code like this to do it:
This works fine EXCEPT (there's always an except isn't there?), it appears to cache the pages once it has them and display the old cache.
Navigating to the page above should fire code on my server to update the secondary grids. I can see the address line change in the browser but the server code never actually fires. This makes me think a cached page is being displayed instead of actually navigating to that page.
If I put links on the page to the same thing, that works. I've set Expire Immediately to be on for my website.
Any ideas why a cached page is being shown?
-----------------------
Or, I could change that function to something like:
But my grid is in an iframe. How do you change that line of code to add in the "target = _parent"?
var RowChg = function(){window.open("ChgData.wc?Source=Drawer&ID=" + this.getProperty("selection/index"), "_parent")}
This works fine EXCEPT (there's always an except isn't there?), it appears to cache the pages once it has them and display the old cache.
Navigating to the page above should fire code on my server to update the secondary grids. I can see the address line change in the browser but the server code never actually fires. This makes me think a cached page is being displayed instead of actually navigating to that page.
If I put links on the page to the same thing, that works. I've set Expire Immediately to be on for my website.
Any ideas why a cached page is being shown?
-----------------------
Or, I could change that function to something like:
var RowChg = function(){document.location.href = "http://www.paladinpgm.com/default.htm?ID=" + this.getProperty("selection/index")}
But my grid is in an iframe. How do you change that line of code to add in the "target = _parent"?
PaladinTodd
December 14,