source: vanHelsing/trunk/gui/WebContent/menu.jspx@ 856

Last change on this file since 856 was 856, checked in by tobias, on Apr 1, 2010 at 2:06:38 PM

visual design change. ValidationParser added

File size: 3.5 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<jsp:root version="1.2"
3 xmlns:jsp="http://java.sun.com/JSP/Page"
4 xmlns:f="http://java.sun.com/jsf/core"
5 xmlns:h="http://java.sun.com/jsf/html"
6 xmlns:ice="http://www.icesoft.com/icefaces/component">
7<jsp:directive.page contentType="text/html;charset=utf-8" />
8<f:view>
9 <ice:outputDeclaration doctypeRoot="HTML" doctypePublic="-//W3C//DTD HTML 4.01 Transitional//EN" doctypeSystem="http://www.w3.org/TR/html4/loose.dtd"/>
10 <html>
11 <head>
12 <title>Van Helsing</title>
13 <ice:outputStyle href="./xmlhttp/css/rime/rime.css" />
14
15 </head>
16 <body>
17 <ice:outputText style="color:grey; font-size:32px" value="Van Helsing"/>
18 <ice:form>
19 <ice:panelGroup style="float:top">
20 <ice:commandButton id="saveRes"
21 value="update resource"
22 actionListener="#{configurationBean.saveButtonListener}"/>
23 <ice:commandButton id="newRes"
24 value="create resource"
25 actionListener="#{configurationBean.newResourceButtonListener}"/>
26 </ice:panelGroup>
27
28 <ice:panelTabSet>
29 <ice:panelTab label="Configuration">
30 <ice:panelDivider style="height:600px;width:85%" dividerPosition="30">
31 <f:facet name="first">
32 <ice:tree id="baum"
33 value="#{configurationBean.tree}"
34 var="item"
35 hideRootNode = "false"
36 hideNavigation ="false"
37 imageDir = "css/images/">
38
39 <ice:treeNode id="knoten">
40 <f:facet name="icon">
41 <ice:panelGroup style="display: inline" >
42 <ice:graphicImage
43 value="/css/images/#{item.userObject.icon}"/>
44 </ice:panelGroup>
45 </f:facet>
46 <f:facet name="content">
47 <!-- <ice:panelGroup> -->
48 <!-- styleClass="selectedNode#{item.userObject eq treeController.selectedUserObject}"
49 style="display: inline" > -->
50 <ice:commandLink actionListener="#{configurationBean.userObjectItemNodeSelected}">
51 <f:param name="userObject.resId" value="#{item.userObject.userObject.resId}"/>
52 <ice:outputText id="knoten" value="#{item.userObject.userObject.value}"/>
53 </ice:commandLink>
54 <!-- </ice:panelGroup> -->
55 </f:facet>
56 </ice:treeNode>
57 </ice:tree>
58 </f:facet>
59 <f:facet name="second">
60 <ice:panelGrid cellpadding="0" cellspacing="3"
61 columns="2" rendered="#{configurationBean.selectedObject != null}">
62 <ice:dataTable
63 var="item"
64 value="#{configurationBean.selectedObject}"
65 style="float:left,bottom; width:90%"
66 >
67 <ice:column>
68 <f:facet name="header">
69 <ice:outputText value="Key" />
70 </f:facet>
71 <ice:outputText value="#{item.key}" />
72 </ice:column>
73 <ice:column>
74 <f:facet name="header">
75 <ice:outputText value="Value" />
76 </f:facet>
77 <ice:inputText partialSubmit="true" value="#{item.keyValue}" />
78 </ice:column>
79 </ice:dataTable>
80 </ice:panelGrid>
81 </f:facet>
82 </ice:panelDivider>
83 </ice:panelTab>
84
85 <ice:panelTab label="Job / Schedule">
86 </ice:panelTab>
87
88 <ice:panelTab label="Topology">
89 </ice:panelTab>
90
91 <ice:panelTab label="Dependencies">
92 </ice:panelTab>
93 </ice:panelTabSet>
94
95 </ice:form>
96 <ice:form>
97 <ice:messages />
98 </ice:form>
99 </body>
100 </html>
101</f:view>
102</jsp:root>
Note: See TracBrowser for help on using the repository browser.