|
Java EE 6 example source code file (burndown.xhtml)
The Java EE 6 burndown.xhtml source code
<?xml version="1.0" encoding="ISO-8859-1" ?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:jsfcomps="http://www.java.net/scrumtoys/jsfcomps"
xmlns:appez="http://java.sun.com/jsf/composite/components" >
<h:head>
<title>#{"Burndown"}
<h:outputStylesheet library="css/1_1" name="app.css"/>
</h:head>
<h:body>
<h:outputScript library="javax.faces" name="ajax.js" target="head"/>
<h:messages errorClass="errorMsgs" infoClass="infoMsgs" />
<appez:title id="tituloDashboard" text="#{'Burndown'}" />
<h:form>
<h:outputLabel value="Sprint:" for="somSprints" />
<h:selectOneMenu id="somSprints" value="#{burndownMB.selectedSprintId}">
<f:selectItems value="#{burndownMB.siSprints}"/>
</h:selectOneMenu>
<h:message for="somSprints" />
<h:commandButton action="#{burndownMB.update}" value="Update" />
<h:panelGrid columns="1">
<h:outputText value="#{burndownMB.selectedSprint.name}" />
<jsfcomps:burndown value="#{burndownMB.selectedSprint}" />
<jsfcomps:test />
</h:panelGrid>
</h:form>
</h:body>
</html>
Other Java EE 6 examples (source code examples)Here is a short list of links related to this Java EE 6 burndown.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.