3 Answers, 1 is accepted
0
Hello Ken,
Could you specify if you are unable to see the nested controls in design view, or you are unable to manage them? As the RadPageLayout is actually a placeholder and when you have a scenario with two nested placeholders (master page and PageLayput) the inability to manage the controls is expected. In addition, please specify the version of our controls, which you are currently using.
Regards,
Nencho
Telerik
Could you specify if you are unable to see the nested controls in design view, or you are unable to manage them? As the RadPageLayout is actually a placeholder and when you have a scenario with two nested placeholders (master page and PageLayput) the inability to manage the controls is expected. In addition, please specify the version of our controls, which you are currently using.
Regards,
Nencho
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0
kencox
Top achievements
Rank 1
answered on 03 Nov 2014, 03:56 PM
Hi Nencho,
Thanks for your response.
I'm using v. 2014.3.1024.45.
Microsoft Visual Studio Ultimate 2013
Version 12.0.30723.00 Update 3
Microsoft .NET Framework
Version 4.5.51650
This occurs in a barebones Telerik Web site. The embedded controls do not appear and the Visual Studio cursor flashes waiting repeatedly as if trying (but failing) to resolve something in the background.
Thanks for your response.
I'm using v. 2014.3.1024.45.
Microsoft Visual Studio Ultimate 2013
Version 12.0.30723.00 Update 3
Microsoft .NET Framework
Version 4.5.51650
This occurs in a barebones Telerik Web site. The embedded controls do not appear and the Visual Studio cursor flashes waiting repeatedly as if trying (but failing) to resolve something in the background.
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
<
asp:ContentPlaceHolder
ID
=
"head"
runat
=
"server"
>
</
asp:ContentPlaceHolder
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadPageLayout
ID
=
"RadPageLayout1"
runat
=
"server"
>
<
telerik:LayoutRow
>
<
Content
>
<
asp:ContentPlaceHolder
ID
=
"ContentPlaceHolder1"
runat
=
"server"
>
</
asp:ContentPlaceHolder
>
</
Content
>
</
telerik:LayoutRow
>
</
telerik:RadPageLayout
>
</
form
>
</
body
>
</
html
>
<%@ Page Title="" Language="C#" MasterPageFile="MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<
asp:Content
ID
=
"Content1"
ContentPlaceHolderID
=
"head"
runat
=
"Server"
>
</
asp:Content
>
<
asp:Content
ID
=
"Content2"
ContentPlaceHolderID
=
"ContentPlaceHolder1"
runat
=
"Server"
>
<
asp:TextBox
ID
=
"TextBox1"
runat
=
"server"
></
asp:TextBox
>
<
asp:DropDownList
ID
=
"DropDownList1"
runat
=
"server"
></
asp:DropDownList
>
<
asp:Button
ID
=
"Button1"
runat
=
"server"
Text
=
"Button"
/>
</
asp:Content
>
0
Hello Ken,
Thank you for getting back to us.
Please excuse me for my previous misleading explanation. Indeed the inability of managing and observing the controls occurs in such master page scenario. The reason is, as previously explained - the nested PlaceHolders within the MasterPage (the RadPageLaoyout is actually a PlaceHolder). You could easily test this behavior by replacing the PageLayout with a simple PlaceHolder :
Hope this information helps. I will be glad to assist you any further.
Regards,
Nencho
Telerik
Thank you for getting back to us.
Please excuse me for my previous misleading explanation. Indeed the inability of managing and observing the controls occurs in such master page scenario. The reason is, as previously explained - the nested PlaceHolders within the MasterPage (the RadPageLaoyout is actually a PlaceHolder). You could easily test this behavior by replacing the PageLayout with a simple PlaceHolder :
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
id
=
"Head1"
runat
=
"server"
>
<
title
></
title
>
<
asp:ContentPlaceHolder
ID
=
"head"
runat
=
"server"
>
</
asp:ContentPlaceHolder
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
asp:PlaceHolder
ID
=
"PlaceHolder1"
runat
=
"server"
>
<
asp:ContentPlaceHolder
ID
=
"ContentPlaceHolder1"
runat
=
"server"
>
</
asp:ContentPlaceHolder
>
</
asp:PlaceHolder
>
</
form
>
</
body
>
</
html
>
Hope this information helps. I will be glad to assist you any further.
Regards,
Nencho
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.