hi. I am trying to use the url rewriter.net module and it works fine. However when I try to use my radwindow / radwindow manager it essentially tries to load the parent page into the popup. Weird. As soon as i disable the rewriter in the config the functionality is exactly as expected. Any thoughts on how to fix this issue?
code:
<script type="text/javascript">
function OpenPositionedWindow(oButton, url, windowName)
{
var oWnd = window.radopen(url,windowName);
}
function openRadWindow(CustomerID)
{
var oWnd = radopen("ImageManager.aspx?PageID=" + CustomerID, "RadWindow1" );
oWnd.center();
}
</script>
code:
<script type="text/javascript">
function OpenPositionedWindow(oButton, url, windowName)
{
var oWnd = window.radopen(url,windowName);
}
function openRadWindow(CustomerID)
{
var oWnd = radopen("ImageManager.aspx?PageID=" + CustomerID, "RadWindow1" );
oWnd.center();
}
</script>
<telerik:RadWindowManager ReloadOnShow="true" ShowContentDuringLoad="false" AutoSize="true"
EnableShadow="true" ID="RadWindowManager1"
Width="900px" Height="200px" runat="server">
</telerik:RadWindowManager>
<a href="#"
onclick="openRadWindow('<%# DataBinder.Eval(Container.DataItem, "PageID") %>'); return false;">Image Manager </a>