Umbraco,XSLT,如何在父页面中呈现子内容?
我在 umbraco 的内容部分中构建了如下内容:
内容节点下具有文件夹图标的项目是内容页面。 内容页面可以有另一个内容页面作为子项或内容部分,这些内容部分是带有图像图标的文档的项目。
(来源:flickr.com)
我有我的设置部分结构如下:
每个SectionDocumentType都有有限数量的可用模板,用户可以选择
(来源:flickr.com)
想要做的是将部分呈现为内容页面中的数据行,同时忽略子内容页面。
我希望每个部分“行”都显示模板和所有内容。
我是 XSLT 新手,所以我想知道如何才能做到这一点?
感谢您的帮助!
I have content that I've structured as follows in the content section in umbraco:
Items under the content node that have a folder icon are Content Pages.
A content page can have another content page as a child or a content section which are the items with doc with image icon.
(source: flickr.com)
I have a settings section that I've structured as follows:
Each SectionDocumentType has a limited number of available templates the user can select
(source: flickr.com)
What I'd like to do is to render Sections as rows of data in a content page while ignoring child content pages.
I'd like each section "row" to display template and all.
I'm new to XSLT so I'm wondering how could I do this?
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想通了。
这是 xslt:
此外,我还必须将此行添加到我的内容部分模板中的内容部分
。以下是在页面模板中使用它的方法。
I figured this out.
Here is the xslt:
Also I had to add this line to my content section
<umbraco:DisableRequestValidation runat="server"/>
in my content section templates.Here is how you use it in your page template.