I've tested under IE6, 7, 8, without issues.
However under current Windows releases of Chrome and Safari, the radWindow title appears for a moment when the window is created and then immediately disappears after the passed form is loaded.
The simplest example:
| var wnd = radopen("MyDialog.aspx?", null); |
| wnd.set_title("My RadWindow Caption"); |
| var oWnd = $find("<%= RadWindow1.ClientID %>"); |
| oWnd.set_title("My Dialog Title"); |

| tbxWachttijdEind.ClientEvents.OnBlur = "CalcWachtBlokken('" + tbxWachttijdStart.ClientID + "','" + tbxWerkTijdEind.ClientID + "')"; |
<
telerik:RadMenu ID="RadMenu1" runat="server" Skin="Vista">
that i dinamically populated non my code behind page in the following way
RadMenu1.DataTextField =
"Name";
RadMenu1.DataFieldID =
"Id";
RadMenu1.DataFieldParentID =
"ParentId";
RadMenu1.DataNavigateUrlField =
"NavigateURL";
RadMenu1.DataSource = GetMenu(Context.User.Identity.Name.ToString());
RadMenu1.DataBind();
Is there a way tu use the asp:SiteMapPath? Or is there a better way?
Thanx a lot for the Help
Raphael
PS: I still use the telerik 2008 Q1
| <body style="height:100%;margin:0px;width:100%;" > |
| <form id="Form1" runat="server" style="height:100%;margin:0px" > |
| <asp:ScriptManager ID="ScriptManager1" runat="server"/> |
| <div style="height:100%;margin:0px;width:100%;" > |
| <telerik:RadTabStrip ID="radTapStripMain" MultiPageID="radMultiPageMain" AutoPostBack="false" Width="100%" runat="server"> |
| <Tabs> |
| <telerik:RadTab Value="tabAdmin" Text="Admin" PageViewID="pvAdmin" Visible="true" runat="server" /> |
| </Tabs> |
| </telerik:RadTabStrip> |
| <telerik:RadMultiPage id="radMultiPageMain" runat="server" Height="100%" Width="100%"> |
| <telerik:RadPageView id="pvAdmin" runat="server" Visible="true" Height="100%" Width="100%"> |
| <telerik:radsplitter id="splitterLinksIndex" orientation="Vertical" Width="100%" Height="100%" HeightOffset="30" runat="server" > |
| <telerik:radpane id="LeftPane" Width="200" MinWidth="100" MaxWidth="500" runat="server"> |
| <a href="http://www.telerik.com" target="<%= RightPane.ClientID %>">link</a> |
| </telerik:radpane> |
| <telerik:radsplitbar id="RadSplitBar1" collapsemode="Forward" runat="server"/> |
| <telerik:radpane Scrolling="Y" id="RightPane" Width="100%" Height="100%" ContentUrl="http://www.microsoft.com" runat="server"></telerik:radpane> |
| </telerik:radsplitter> |
| </telerik:RadPageView > |
| </telerik:RadMultiPage> |
| </div> |
| </form> |
| </body> |
| Firefox |
| <iframe id="RAD_SPLITTER_PANE_EXT_CONTENT_RightPane" frameborder="0" scrolling="auto" name="RightPane" src="http://www.microsoft.com" style="border: 0px none ; height: 825px; width: 1055px;"> |
| IE6 |
| <IFRAME id=RAD_SPLITTER_PANE_EXT_CONTENT_RightPane style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" name=RightPane src="http://www.microsoft.com" frameBorder=0></IFRAME> |
| function(g,f) |
| { |
| if(f<=0||f==""){ |
| g.style.width="" |
| } |
| else |
| { |
| ** g.style.width=f+"px"; |
| var h=g.offsetWidth-f; |
| var e=f-h; |
| if(e>0) |
| { |
| g.style.width=e+"px" |
| } |
| else |
| { |
| g.style.width="" |
| } |
| } |
| } |
| var datpick1 = <%= datpick1.ClientID %>; |
| var datpick2 = <%= datpick2.ClientID %>; |
| var calendar2 = <%= datpick2.ClientID %>.GetCalendar(); |
| calendar2.SpecialDays.Clear(); |
| calendar2.SetMaxDate(datpick1.GetMaxDate());//datpick1.GetMaxDate() is 10 days greater than datpick2 max date |
| var da = new Date(datpick1.GetMaxDate()); |
| da.setDate(da.getDate()); |
| calendar2.SetDate(da); |