如何在jboss门户中创建子页面
如何在 jboss 门户中创建子页面。 我的 *pages-object.xml 中有以下结构。我需要在主页下创建一个 2 个页面,其中包含 2 个 portlet。请帮助我实现这一目标
<deployment>
<if-exists>overwrite</if-exists>
<parent-ref>palm</parent-ref>
<page>
<page-name>Home</page-name>
<supported-locale>en</supported-locale>
<properties>
<property>
<name>order</name>
<value>1</value>
</property>
</properties>
</page>
</deployment>
谢谢, 山姆
how to create a child page in jboss portal.
I have following structure in my *pages-object.xml. I need to create a 2 pages two hold 2 portlets under Home page. Please help me achieve this
<deployment>
<if-exists>overwrite</if-exists>
<parent-ref>palm</parent-ref>
<page>
<page-name>Home</page-name>
<supported-locale>en</supported-locale>
<properties>
<property>
<name>order</name>
<value>1</value>
</property>
</properties>
</page>
</deployment>
Thanks,
Sam
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要创建子页面,您必须向 xml 文件添加另一个
deployment
元素,parent-ref
元素应包含父级parent-ref< 的串联在您的示例中, /code> 和父级
page-name
、palm.Home
。To create a sub page you have to add another
deployment
element to the xml file, theparent-ref
element should contain the concatenation of the parentsparent-ref
and the parentspage-name
,palm.Home
in your example.