I have been using RadWindow for some time now in various applications and with no problems. I have successfully sent parm's to the window and received values back on close. I only say this so you know I've been using it for some time and am not a complete newbie.
I have a RadWindow which I am trying to display from a user control (which is, of course, located on a web page which uses a master page). When I display the window, resizing does not work, setting the title text value does not work, and setting the behaviors has no effect on the window that is displayed.
I can take exactly the same code, put it on another web page that does not use a user control or master page and it works fine. Is there something about doing this from a user control that causes the RadWindow to behave improperly?
The attached file contains a screen capture of the results of this action. Please note that the RadWindow2 is defined as being 900 pixels wide, 100 pixels high, and containing a title of "Telerik RadWindow".
Is there some kind of problem with displaying a RadWindow from within a User Control? Is there something you can see that I am doing wrong, because I have taken this same code to another page (without the user control) and it has worked perfectly.
Help, please!
I have a RadWindow which I am trying to display from a user control (which is, of course, located on a web page which uses a master page). When I display the window, resizing does not work, setting the title text value does not work, and setting the behaviors has no effect on the window that is displayed.
I can take exactly the same code, put it on another web page that does not use a user control or master page and it works fine. Is there something about doing this from a user control that causes the RadWindow to behave improperly?
<telerik:RadWindowManager ID="RadWindowManager1" runat="server"> |
<Windows> |
<telerik:RadWindow |
id="RadWindow2" |
runat="server" |
showcontentduringload="false" |
width="900px" |
height="100px" |
title="Telerik RadWindow" |
behaviors="Close"> |
</telerik:RadWindow> |
</Windows> |
</telerik:RadWindowManager> |
function openy() { |
radopen("UserControls/ARadWindowTest.aspx", "RadWindow2"); |
} |
<asp:LinkButton ID="LinkButton2" OnClientClick="openy(); return false;" runat="server">RadOpen</asp:LinkButton> |
The attached file contains a screen capture of the results of this action. Please note that the RadWindow2 is defined as being 900 pixels wide, 100 pixels high, and containing a title of "Telerik RadWindow".
Is there some kind of problem with displaying a RadWindow from within a User Control? Is there something you can see that I am doing wrong, because I have taken this same code to another page (without the user control) and it has worked perfectly.
Help, please!