LayoutTemplatePath
I have implemented the Jobs module in the samples in the SDK, it embeds the templates as a resource in the library.
Hello Joe Keller,
The module uses LandingPageId property which gets the identity of the home (landing) page for the Blogs module. Inside Install method PageManager creates this node as backend page.
Public controls like JobApplicationUpload that inherit from SimpleView have a property LayoutTemplatePath that you can use to get or set the path of the external template to be used by the control directly through the widget designer.
Greetings,
Ivan Dimitrov
the Telerik team
If I override the LayoutTemplatePath, and explicitly set the property value to something like '~/templates/mytemplate.ascx' my public controls (.cs files) start breaking because they return null when trying to get a reference to the controls.
It all works fine when I use LayoutTemplateName, and it references an embedded resource.
At first I was thinking it just couldn't find the .ascx file but, I noticed it will throw a specific error about not being able to find the .ascx file if you don't enter the LayoutTemplatePath properly. I am not getting that error, so I assume it is finding the .ascx file just fine,
I will try a few more things and see what happens.
Thanks
Joe
Ok, I figured out what was happening, in case anyone else runs into this issue.
protected Panel pnlSubCategory
get
return (Panel)base.Container.FindControl("pnlSubCategory");
protected Panel pnlSubCategory
get
return base.Container.GetControl<
Panel
>("pnlSubCategory", true);
Helloo,
I want to customize NewsList Template for that i have added External News Template in my Project n i specified its path in LayoutTeplatePath property as : ~/Custom/ControlTemplates/News/ListNewsView.ascx ... Custom Folder is in Root ... but its not refering that Template Path ... Thanks
If you are talking about the News widget in 4.x, then you can just use the Widget Template section under Design in the Administration area. By adding your code to the widget template, you can easily select it for future use. The use of the LayoutTemplatePath is really intended for use in 4.x module development. If you are just using the template to style out an existing module/widget, then the Widget Template is the way to go.