This is a migrated thread and some comments may be shown as answers.

How to All a Window to Move over a MasterPage

1 Answer 60 Views
Window
This is a migrated thread and some comments may be shown as answers.
Vuyiswa
Top achievements
Rank 2
Vuyiswa asked on 02 Aug 2014, 04:30 PM
Good Day All 

i have a masterpage and a RadWindow is opened from the content page. But when i maximize the window it only moves within the Content Page space. i will it to be able to move across the page, even on top of masterpage contents. 

Thanks 

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 04 Aug 2014, 07:39 AM
Hi Vuyiswa Maseko,

Please have a look into the sample code snippet which works fine at my end. The expected behavior of the control is RadWindow will moves across both Master Page and Content Page.

Master Page ASPX:
<asp:Label ID="Label1" runat="server" Text="Demo1">
</asp:Label>

Content Page ASPX:
<telerik:RadButton ID="rbtnOpenWin" runat="server" Text="Open Window" AutoPostBack="false" OnClientClicked="openWindow">
</telerik:RadButton>
<telerik:RadWindow ID="rwindowExamplePage" runat="server">
    <ContentTemplate>
        This is an example page
    </ContentTemplate>
</telerik:RadWindow>

Content Page JavaScript:
function openWindow(sender, args) {
    $find("<%=rwindowExamplePage.ClientID%>").show();
}

Please provide your code if it doesn't help.
Thanks,
Shinu.
Tags
Window
Asked by
Vuyiswa
Top achievements
Rank 2
Answers by
Shinu
Top achievements
Rank 2
Share this question
or