RadWindow behaving oddly only on homepage

Posted by Community Admin on 03-Aug-2018 01:57

RadWindow behaving oddly only on homepage

All Replies

Posted by Community Admin on 27-Apr-2012 00:00

We have a very basic custom widget that launches a radwindow.  On the widget, there is a RadWindowManager:

<telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableShadow="true"
    VisibleStatusbar="false" ShowContentDuringLoad="false" AutoSize="true">
    <Windows>
        <telerik:RadWindow runat="server" ID="rwVSP" Behaviors="Close" AutoSize="true" Modal="true" >
        </telerik:RadWindow>
    </Windows>
</telerik:RadWindowManager>

And on the click of a button, we open the window via the client-side api:
function openRadWin(url)
       var oWnd = radopen(url, "rwVSP");
       oWnd.center();
   

On ALL pages, except for the homepage, the "Behaviors" and the "Modal" property are respected, but on the root level, all the properties are ignored. The window is NOT a modal, and all the header buttons show on the homepage, instead of the just the "close" button as indicated.

Any idea what might be causing this?  Thanks.

This thread is closed