实际上在一个页面上我有2个portlet但是我想通过单击submit
按钮隐藏第一个portlet,只有第二个portlet应该可见我使用了以下代码:
document.getElementById("portlet-id").style.visibility='none'
但刷新页面之后,再次看到portlet可以让任何人为我提供解决方案,以便我可以继续。
答案 0 :(得分:5)
您可以使用以下代码将JSP中的visibility
设置为false
:
<%
renderRequest.setAttribute(WebKeys.PORTLET_CONFIGURATOR_VISIBILITY, Boolean.FALSE);
%>
这会将您的portlet隐藏在用户的视图之外。
每次呈现portlet时,您都可以检查在请求或会话中设置的参数(您的选择),以显示portlet或不显示portlet,如:
<%
String paramFromRequestToHide = renderRequest.getParameter("hidePortlet");
// can also fetch from session: portletSession.getAttribute("hidePortlet");
if (paramFromRequestToHide .equals("YES")) { // you can use your favorite data-type
renderRequest.setAttribute(WebKeys.PORTLET_CONFIGURATOR_VISIBILITY, Boolean.FALSE);
} else {
renderRequest.setAttribute(WebKeys.PORTLET_CONFIGURATOR_VISIBILITY, Boolean.TRUE);
}
%>
如果您不想使用上述方法,那么您可以将javascript方法与参数方法结合使用,如下所示:
<%
String paramFromRequestToHide = renderRequest.getParameter("hidePortlet");
if (paramFromRequestToHide .equals("YES")) {
%>
<aui:script>
Liferay.Portlet.ready(
/*
This function gets loaded after each and every portlet on the page.
portletId: the current portlet's id
node: the Alloy Node object of the current portlet
*/
function(portletId, node) {
document.getElementById(portletId).style.display = 'none';
// or alternatively using pure Alloy UI
// node.hide();
}
);
</aui:script>
<%
} else {
%>
<aui:script>
Liferay.Portlet.ready(
function(portletId, node) {
document.getElementById(portletId).style.display = 'block';
// or alternatively using pure Alloy UI
// node.show();
}
);
</aui:script>
<%
}
%>
如果你想退出Alloy UI API以及一些demos来学习Alloy UI,那么从Liferay 6.1开始,Alloy UI就是liferay的事实上的javascript库。现在,Alloy UI有一个official web-site,其中包含许多有用的教程和示例。
希望这能为您提供充足的资料: - )
答案 1 :(得分:0)
您也可以这样做:
如果您的portlet标识是:callcenter_WAR_xyzyportlet
$( '#p_p_id_callcenter_WAR_xyzyportlet _')的CSS({显示: '无'});