如何隐藏/查看liferay Portal中的portlet?
我正在使用icefaces 在liferay 门户上开发portlet,我想通过在我的托管bean 中编写的操作以编程方式隐藏/查看portlet。 所以请尽快帮助我?
提前致谢...
I m developing portlets on liferay portal using icefaces, i want to hide/view the portlet programmaticaly from an action written in my managed bean.
so please help me ASAP?
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以调用该方法
来自 Portlet 操作的
ActionResponse.setWindowState(WindowState.MINIMIZED)
。当谈论操作时,我指的是 portlet API 的 ActionResponse 和 EventResponse 类。
You can invoke the method
ActionResponse.setWindowState(WindowState.MINIMIZED)
from an action of your portlets.When talking about actions, I am referring to the ActionResponse and EventResponse classes of the portlets API.
我也做过类似的事情。如果在 portlet 上找不到数据,我通常会将其隐藏。我优先选择复选框,仅在需要时启用该复选框。
https://dev。 liferay.com/de/develop/tutorials/-/knowledge_base/6-1/implementing-configurable-portlet-preferences
I have done something similar. If there is no data found on the portlet I usually hide it. I have check box in preference, I enable that only when needed.
https://dev.liferay.com/de/develop/tutorials/-/knowledge_base/6-1/implementing-configurable-portlet-preferences