在不使用 Jquery 的情况下从 Liferay 中的代码更改 portlet 标题
我有通过 JQuery 更改 portlet 标题的解决方案。
$('#idOfPortlet').find('.portlet-title').html('new title');
但我们不想在我们的项目中使用 JQuery。 是否有任何解决方案可以通过代码使用 YUI 或任何其他内容更改 portlet 的标题?
提前致谢。
问候, 马尤尔·帕特尔
I'm having solution to change title of portlet through JQuery.
$('#idOfPortlet').find('.portlet-title').html('new title');
But we dont want to use JQuery in our project.
Is there any solution to change title of portlet using YUI or anyother thing through code?
Thanks in Advance.
Regards,
Mayur Patel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的 Liferay 版本使用的是 YUI 3,那么可以这样做:
我不确定 Liferay 是否将 YUI 实例公开为 Y,或者他们是否将其包装在 AUI 中并将其设为 A。
If the version of Liferay you're on is using YUI 3, then this aught to do it:
I'm not sure if Liferay exposes the YUI instance as Y, or if they wrap it in AUI and make it A.
您可以使用以下代码来做到这一点 -
You can do so, by using this code -