Changeset 856 for vanHelsing/trunk/gui/WebContent
- Timestamp:
- Apr 1, 2010, 2:06:38 PM (15 years ago)
- Location:
- vanHelsing/trunk/gui/WebContent
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
vanHelsing/trunk/gui/WebContent/WEB-INF/faces-config.xml
r848 r856 6 6 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd" 7 7 version="1.2"> 8 <application> 9 <locale-config> 10 <default-locale>en</default-locale> 11 <supported-locale>en</supported-locale> 12 </locale-config> 13 <message-bundle>de.dass_it.vanhelsing.gui.messages</message-bundle> 14 15 </application> 8 16 <managed-bean> 9 17 <description>backend bean of the configuration tree view</description> -
vanHelsing/trunk/gui/WebContent/css/rime.css
r854 r856 2664 2664 2665 2665 .iceMsgInfo { 2666 2667 2666 } 2668 2667 -
vanHelsing/trunk/gui/WebContent/index.jsp
r849 r856 1 <!-- <html>2 <head>3 </head>4 <frameset cols="250,*">5 <frame src="viewConfig.iface" name="links">6 <frame src="leereSeite.iface" name="rechts">7 <noframes>8 <body>9 <p>Alternativ-Inhalt (Zusammenfassung, Sitemap ...)</p>10 </body>11 </noframes>12 </frameset>13 </html> -->14 1 <html> 15 2 <head></head> 16 3 <body> 17 <jsp:forward page=" viewConfig.iface" />4 <jsp:forward page="menu.iface" /> 18 5 </body> 19 6 </html> -
vanHelsing/trunk/gui/WebContent/viewConfig.jspx
r854 r856 14 14 <html> 15 15 <head> 16 <title>vanHelsing GUI</title> 17 <!-- <link rel="stylesheet" type="text/css" href="css/treeComponents.css"/> --> 18 <link rel="stylesheet" type="text/css" href="css/showcase_style.css" /> 19 <link rel="stylesheet" type="text/css" href="css/showcase_overrides.css"/> 20 <link rel="stylesheet" type="text/css" href="css/showcase_layout.css"/> 21 <link rel="stylesheet" type="text/css" href="css/rime.css" /> 22 23 16 <ice:outputStyle href="./xmlhttp/css/rime/rime.css" /> 17 <title>van Helsing</title> 24 18 </head> 25 19 26 20 <body> 27 <h1 style="color:grey">van Helsing GUI</h1>28 <ice:panelDivider dividerPosition="45" style="float:left; height:85%">29 <f:facet name="first" >30 <ice:panelGroup style="exampleBox;float:left;width:350px ">21 <h1 style="color:grey">van Helsing</h1> 22 <ice:panelDivider dividerPosition="45" style="float:left; height:85%"> 23 <f:facet name="first" style="height:85%"> 24 <ice:panelGroup style="exampleBox;float:left;width:350px; height:85%"> 31 25 <ice:form> 32 26 <ice:tree id="baum" … … 62 56 63 57 <ice:panelGroup style="float:left;margin: 0; padding: 0" > 58 <ice:panelGroup rendered="#{configurationBean.selectedObject != null}"> 59 <ice:commandButton id="newRes" 60 value="Neu2" 61 actionListener="#{configurationBean.newResourceButtonListener}"/> 62 <ice:commandButton id="saveRes" 63 value="Speichern" 64 actionListener="#{configurationBean.saveButtonListener}"/> 65 </ice:panelGroup> 66 64 67 <ice:panelGrid cellpadding="0" cellspacing="3" 65 68 columns="2" rendered="#{configurationBean.selectedObject != null}"> … … 79 82 <ice:outputText value="Value" /> 80 83 </f:facet> 81 <ice:inputText partialSubmit="true" value="#{item.keyValue}" /> 84 <ice:inputText rendered="#{item.inputText != null}" partialSubmit="true" value="#{item.keyValue}" /> 85 <ice:selectOneMenu id="SlctCompTyp" rendered="#{item.inputSelectOne != null}" valueChangeListener="#{selectionTags.effectChangeListener}" 86 value="#{selectionTags.selectedComponent}" partialSubmit="true"> 87 <f:selectItems id="SlctcompTypeItms" value="#{selectionTags.componentItems}"/> 88 </ice:selectOneMenu> 82 89 </ice:column> 83 90 84 91 </ice:dataTable> 85 <ice:panelGroup> 86 <ice:commandButton id="saveRes" 87 value="Speichern" 88 actionListener="#{configurationBean.saveButtonListener}"/> 89 </ice:panelGroup> 90 <ice:panelGroup rendered="#{configurationBean.selectedObject != null}"> 91 <ice:commandButton id="newRes" 92 value="Neu" 93 actionListener="#{configurationBean.newResourceButtonListener}"/> 94 </ice:panelGroup> 95 </ice:form> 92 </ice:form> 96 93 </ice:panelGrid> 97 94 </ice:panelGroup>
Note:
See TracChangeset
for help on using the changeset viewer.