
META-INF.resources.wiki_display.configuration.jsp Maven / Gradle / Ivy
The newest version!
<%--
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
--%>
<%@ include file="/wiki_display/init.jsp" %>
<%
nodeId = ParamUtil.getLong(request, "nodeId", nodeId);
List nodes = WikiNodeServiceUtil.getNodes(scopeGroupId);
boolean nodeInGroup = false;
%>
<%
for (WikiNode node : nodes) {
node = node.toEscapedModel();
if (nodeId == node.getNodeId()) {
nodeInGroup = true;
}
%>
<%
}
%>
<%
int total = WikiPageLocalServiceUtil.getPagesCount(nodeId, true);
List pages = WikiPageLocalServiceUtil.getPages(nodeId, true, 0, total);
for (int i = 0; i < pages.size(); i++) {
WikiPage wikiPage = (WikiPage)pages.get(i);
%>
<%
}
%>
var nodeIdSelect = $('# nodeId');
var pageSelectorContainer = $('# pageSelectorContainer');
var nodeIdValue = nodeIdSelect.val();
nodeIdSelect.on(
'change',
function() {
pageSelectorContainer.toggleClass('hide', nodeIdSelect.val() !== nodeIdValue);
}
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy