I am trying to figure out how to reload the parent page of my application from inside of a RadWindow without the RadWIndow closing or reloading. In my application, users have the ability to open up a pop-up window that will list all of their current customers. When they click on the customer's name, the parent window is suppose to load up that particular customer's information.
Here is the code that I have to reload the parent page:
function RefreshParentPage(Url) {
GetRadWindow().BrowserWindow.location = Url;
}
The Url passed in the Url for the customer summary page. This serve as a starting point for drilling down into more detail on a customer.
Right when I run the application, the pop-up appears correctly. When the user clicks on the customer's name, the parent page navigates to the summary page correctly, but the pop-up window closes. I am trying to get the summary page to stay visible until the user actually closes it.
How can I do that?
Thanks,
David