I see. I wanted to just remove the text (the enablestatusbar property I had noticed).
Thanks for that.
RE navigateurl/seturl. I think my problems are related to my understanding of what can and can't be done.
For example, this doesn't show an image:
<telerik:RadWindow VisibleOnPageLoad="true" runat="server" Skin="Black" OffsetElementID="rightbar" Visible="true">
<asp:UpdatePanel runat="server">
<ContentTemplate>
<img alt="" src="Content/logo_home.gif" visible="true" style="margin-left: 15px; width: 133px; height: 60px" /><br />
</ContentTemplate>
</asp:UpdatePanel>
</telerik:RadWindow>
My site is based on one page (now possible with rad controls).
With regards to what I want to do, how can I add a radmenu inside the radwindow and show it? Everytime I attempt to do ths, the radmenu doesn't show or the radmenu and the radwindow both don't show. This code doesn't show anything:
<div id="rightbar"
style="position: relative; top: -482px; left: 595px; height: 403px; width: 564px;">
<telerik:RadWindow VisibleOnPageLoad="true" runat="server" Skin="Black" OffsetElementID="rightbar" Visible="true">
<telerik:RadMenu Visible="true" runat="server">
</telerik:RadMenu>
<asp:UpdatePanel runat="server">
<ContentTemplate>
</ContentTemplate>
</asp:UpdatePanel>
</telerik:RadWindow>
</div>
It seems like I can only have a webpage (Set in the navigateUrl property), which will have my radMenu. The radwindow will be on the homepage. Is there a working example of what I am trying to do?