自定义添加应用程序链接不起作用
我想向我的 Liferay 主题添加自定义添加应用程序链接。
这就是我在模板 (portlet_normal.vm) 中的内容:
#if($show_add_content)
<a href="javascript:$add_content_url" id="addApplications">$add_content_text</a>
<a href="javascript:$layout_url" id="layoutTemplates">$layout_text</a>
#end
这就是我在页面上得到的内容:
<a href="javascript:Liferay.LayoutConfiguration.toggle('87');" id="addApplications">Add Application</a>
<a href="javascript:Liferay.LayoutConfiguration.showTemplates();" id="layoutTemplates">Layout Template</a>
布局按钮按预期工作,但添加应用程序 portlet 未加载。
我想缺少库/包含?有人有想法吗?
i want to add a custom Add Application Link to my Liferay Theme.
This is what i have in the template (portlet_normal.vm):
#if($show_add_content)
<a href="javascript:$add_content_url" id="addApplications">$add_content_text</a>
<a href="javascript:$layout_url" id="layoutTemplates">$layout_text</a>
#end
and this is what I got on the page:
<a href="javascript:Liferay.LayoutConfiguration.toggle('87');" id="addApplications">Add Application</a>
<a href="javascript:Liferay.LayoutConfiguration.showTemplates();" id="layoutTemplates">Layout Template</a>
The Layoutbutton is working as expected, but the Add Applications portlet is'nt loaded.
I think about missing libs/includes? Has anyone an idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过以下解决方案
http://www.liferay.com/community/wiki //wiki/Main/Link+to+Dockbar
addApplication 对我有用。但是布局模板链接不起作用。
Have you tried the solution in
http://www.liferay.com/community/wiki/-/wiki/Main/Link+to+Dockbar
The addApplication works for me. However the layout template link didn't work.