alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java EE 6 example source code file (burndown.xhtml)

This example Java EE 6 source code file (burndown.xhtml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Java EE 6 tags/keywords

burndown, burndown, iso-8859-1, iso-8859-1, sprint, sprint, update, update

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

 

new blog posts

 

Copyright 1998-2021 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.