|
Java EE 6 example source code file (dashboard.xhtml)
The Java EE 6 dashboard.xhtml source code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:appez="http://java.sun.com/jsf/composite/components" >
<ui:composition template="template.xhtml">
<ui:define name="pageTitle">
<h:outputText value="HOME needs i18n">
</ui:define>
<ui:define name="content">
<h:outputScript library="javax.faces" name="ajax.js" target="head">
<h:messages errorClass="errorMsgs" infoClass="infoMsgs" />
<appez:title id="tituloDashboard" text="#{dashboardMB.selectedSprint.name}">
<h:panelGroup>
<h:outputLabel value="#{i18n['label.goal']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.goals}" />
</h:panelGroup>
</appez:title>
<h:panelGrid columns="2" style="float: left">
<h:outputLabel value="#{i18n['label.estimatives']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.meetings.estimation.date}">
<f:convertDateTime pattern="dd/MM/yyyy" />
</h:outputText>
<h:outputLabel value="#{i18n['label.planning1']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.meetings.sprintPlanningI.date}">
<f:convertDateTime pattern="dd/MM/yyyy" />
</h:outputText>
<h:outputLabel value="#{i18n['label.planning2']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.meetings.sprintPlanningII.date}"/>
<h:outputLabel value="#{i18n['label.dailyMeeting']}:" for="" style="font-weight: bold" />
<h:panelGroup>
<h:outputText value="#{dashboard2MB.selectedSprint.dailyMeetingTime}">
</h:outputText>
</h:panelGroup>
<h:outputLabel value="#{i18n['label.revision']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.meetings.revision.date}">
<f:convertDateTime pattern="dd/MM/yyyy" />
</h:outputText>
<h:outputLabel value="#{i18n['label.retrospective']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.meetings.retrospective.date}">
<f:convertDateTime pattern="dd/MM/yyyy" />
</h:outputText>
</h:panelGrid>
<table width="100%">
<tr>
<td style="vertical-align: top; min-width: 150px" width="150px">
<h:form id="frmStories">
<ui:include src=".dashboard.stories.xhtml" />
</h:form>
</td>
<td style="vertical-align: top; min-width: 150px" width="150px">
<h:form id="frmTodo">
<ui:include src=".dashboard.todoTasks.xhtml" />
</h:form>
</td>
<td style="vertical-align: top; min-width: 150px" width="150px">
<h:form id="frmWorking">
<ui:include src=".dashboard.workingTasks.xhtml" />
</h:form>
</td>
<td style="vertical-align: top; min-width: 150px" width="150px">
<h:form id="frmDone">
<ui:include src=".dashboard.doneTasks.xhtml" />
</h:form>
</td>
</tr>
</table>
</ui:define>
</ui:composition>
</html>
Other Java EE 6 examples (source code examples)Here is a short list of links related to this Java EE 6 dashboard.xhtml source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.