Files
alfresco-community-repo/source/web/jsp/dashboards/layouts/single-column.jsp
Kevin Roast 177a65f20e . Dashboards impl checkpoint
- beginnings of the dashboard configuration wizard (layouts)
  - icons for various layouts (a bit of Photoshop fun)
  - working layouts for single column, 2 column left and right narrow, three column
. Added "immediate" attribute to ActionLink component - same functionality as for standard JSF Command Button
. Fixed Wizard container.jsp to use "immediate=true" on Cancel button

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3354 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2006-07-19 16:42:39 +00:00

57 lines
2.8 KiB
Plaintext

<%--
Copyright (C) 2006 Alfresco, Inc.
Licensed under the Mozilla Public License version 1.1
with a permitted attribution clause. You may obtain a
copy of the License at
http://www.alfresco.org/legal/license.txt
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific
language governing permissions and limitations under the
License.
--%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="/WEB-INF/alfresco.tld" prefix="a" %>
<%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
<%@ page import="org.alfresco.web.app.Application" %>
<% Application.getDashboardManager().initDashboard(); %>
<h:panelGrid columns="1" cellpadding="2" cellspacing="2" width="100%">
<a:panel label="#{DashboardManager.dashletTitle[0]}" id="dashlet-1" progressive="true" rendered="#{DashboardManager.dashletAvailable[0]}"
border="white" bgcolor="white" titleBorder="blue" titleBgcolor="#D3E6FE">
<f:subview id="dashlet-1-view">
<jsp:include page="<%=Application.getDashboardManager().getDashletPage(0)%>" />
</f:subview>
</a:panel>
<a:panel label="#{DashboardManager.dashletTitle[1]}" id="dashlet-2" progressive="true" rendered="#{DashboardManager.dashletAvailable[1]}"
border="white" bgcolor="white" titleBorder="blue" titleBgcolor="#D3E6FE">
<f:subview id="dashlet-2-view">
<jsp:include page="<%=Application.getDashboardManager().getDashletPage(1)%>" />
</f:subview>
</a:panel>
<a:panel label="#{DashboardManager.dashletTitle[2]}" id="dashlet-3" progressive="true" rendered="#{DashboardManager.dashletAvailable[2]}"
border="white" bgcolor="white" titleBorder="blue" titleBgcolor="#D3E6FE">
<f:subview id="dashlet-3-view">
<jsp:include page="<%=Application.getDashboardManager().getDashletPage(2)%>" />
</f:subview>
</a:panel>
<a:panel label="#{DashboardManager.dashletTitle[3]}" id="dashlet-4" progressive="true" rendered="#{DashboardManager.dashletAvailable[3]}"
border="white" bgcolor="white" titleBorder="blue" titleBgcolor="#D3E6FE">
<f:subview id="dashlet-4-view">
<jsp:include page="<%=Application.getDashboardManager().getDashletPage(3)%>" />
</f:subview>
</a:panel>
<a:panel label="#{DashboardManager.dashletTitle[4]}" id="dashlet-5" progressive="true" rendered="#{DashboardManager.dashletAvailable[4]}"
border="white" bgcolor="white" titleBorder="blue" titleBgcolor="#D3E6FE">
<f:subview id="dashlet-5-view">
<jsp:include page="<%=Application.getDashboardManager().getDashletPage(4)%>" />
</f:subview>
</a:panel>
</h:panelGrid>