Skip to content
Snippets Groups Projects
projectDependencies.xhtml 881 B
<?xml version='1.0' encoding='UTF-8' ?>
<!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:h="http://java.sun.com/jsf/html"
	xmlns:f="http://java.sun.com/jsf/core"
	xmlns:p="http://primefaces.org/ui">

<f:view contentType="text/html">
	<h:head>
		<title>Kieker.WebGUI - Project Dependencies</title>
		<link rel="stylesheet" title="Standard-Stylesheet" type="text/css"
			href="main.css" />
	</h:head>
	<body>
		<h:form>
			<p:pickList id="pickList" value="#{selectedDependenciesBean.dependencies}" var="dependency"
				itemLabel="#{dependency}" itemValue="#{dependency}" />
			<p:commandButton value="Ok" />
			<p:commandButton value="Accept" />
			<p:commandButton value="Cancel" />
			<p:commandButton value="Reset" />
		</h:form>
	</body>
</f:view>

</html>