Changeset 848 for vanHelsing/trunk/gui/WebContent
- Timestamp:
- Mar 22, 2010, 5:12:11 PM (15 years ago)
- Location:
- vanHelsing/trunk/gui/WebContent
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
vanHelsing/trunk/gui/WebContent/WEB-INF/faces-config.xml
r832 r848 24 24 <managed-bean-scope>session</managed-bean-scope> 25 25 </managed-bean> 26 <managed-bean> 27 <description>backend bean of the client item</description> 28 <managed-bean-name>client</managed-bean-name> 29 <managed-bean-class>de.dass_it.vanhelsing.gui.items.ClientItem</managed-bean-class> 30 <managed-bean-scope>request</managed-bean-scope> 31 </managed-bean> 26 32 27 33 </faces-config> -
vanHelsing/trunk/gui/WebContent/client.jspx
r832 r848 24 24 <ice:form> 25 25 <ice:outputLabel for="client.name" value="Name: " /> 26 <ice:inputText id="client.name" value="#{ baum.selectedNode.clientItem.name}" />26 <ice:inputText id="client.name" value="#{configurationBean.selectedNode.userObject.name}" /> 27 27 <ice:outputLabel for="client.address" value="Address: " /> 28 <ice:inputText id="client.address" value="#{ baum.selectedNode.clientItem.address}" />28 <ice:inputText id="client.address" value="#{configurationBean.selectedNode.userObject.address}" /> 29 29 <ice:outputLabel for="client.fdPort" value="FDPort: " /> 30 <ice:inputText id="client.fdPort" value="#{ baum.selectedNode.clientItem.fdPort}" />30 <ice:inputText id="client.fdPort" value="#{configurationBean.selectedNode.userObject.FDPort}" /> 31 31 <ice:outputLabel for="client.catalog" value="Catalog: " /> 32 <ice:inputText id="client.catalog" value="#{ baum.selectedNode.clientItem.catalog}" />32 <ice:inputText id="client.catalog" value="#{configurationBean.selectedNode.userObject.catalog}" /> 33 33 <ice:outputLabel for="client.password" value="Password: " /> 34 <ice:inputText id="client.password" value="#{ baum.selectedNode.clientItem.password}" />34 <ice:inputText id="client.password" value="#{configurationBean.selectedNode.userObject.password}" /> 35 35 <ice:outputLabel for="client.fileRetention" value="FileRetention: " /> 36 <ice:inputText id="client.fileRetention" value="#{ baum.selectedNode.clientItem.fileRetention}" />36 <ice:inputText id="client.fileRetention" value="#{configurationBean.selectedNode.userObject.fileRetention}" /> 37 37 <ice:outputLabel for="client.jobRetention" value="JobRetention: " /> 38 <ice:inputText id="client.jobRetention" value="#{ baum.selectedNode.clientItem.jobRetention}" />38 <ice:inputText id="client.jobRetention" value="#{configurationBean.selectedNode.userObject.jobRetention}" /> 39 39 <ice:outputLabel for="client.autoPrune" value="AutoPrune: " /> 40 <ice:inputText id="client.autoPrune" value="#{ baum.selectedNode.clientItem.autoPrune}" />40 <ice:inputText id="client.autoPrune" value="#{configurationBean.selectedNode.userObject.autoPrune}" /> 41 41 <ice:outputLabel for="client.maximumConcurrentJobs" value="MaximumConcurrentJobs: " /> 42 <ice:inputText id="client.maximumConcurrentJobs" value="#{ baum.selectedNode.clientItem.maximumConcurrentJobs}" />42 <ice:inputText id="client.maximumConcurrentJobs" value="#{configurationBean.selectedNode.userObject.maximumConcurrentJobs}" /> 43 43 <ice:outputLabel for="client.priority" value="Priority: " /> 44 <ice:inputText id="client.priority" value="#{ baum.selectedNode,clientItem.priority}" />44 <ice:inputText id="client.priority" value="#{configurationBean.selectedNode.userObject.priority}" /> 45 45 </ice:form> 46 46 </ice:panelGrid> -
vanHelsing/trunk/gui/WebContent/viewConfig.jspx
r844 r848 19 19 <body> 20 20 21 <ice:panelGroup style="float:left; width: 30%">21 <ice:panelGroup style="float:left; width:20%; background-color=blue"> 22 22 <ice:form> 23 23 <ice:tree id="baum" … … 28 28 29 29 <ice:treeNode id="knoten"> 30 <!--<f:facet name="icon">31 </f:facet> -->30 <f:facet name="icon"> 31 </f:facet> 32 32 <f:facet name="content"> 33 < !--<ice:commandLink actionListener="#{configurationBean.userObjectItemNodeSelected}">34 <f:param name=" configItemId" value="#{configurationBean.userObject.configItem.id}"/> -->33 <ice:commandLink actionListener="#{configurationBean.userObjectItemNodeSelected}"> 34 <f:param name="userObject.resId" value="#{item.userObject.userObject.resId}"/> 35 35 <ice:outputText id="knoten" value="#{item.userObject.userObject.value}"/> 36 < !--</ice:commandLink>-->36 </ice:commandLink> 37 37 </f:facet> 38 38 </ice:treeNode> … … 40 40 </ice:form> 41 41 </ice:panelGroup> 42 <!-- <ice:panelGroup> 43 <f:subview id="selectedNodeType"> 44 <jsp:include page="#{configurationBean.userObject.getTypePage}" /> 45 </f:subview> 46 </ice:panelGroup> --> 42 47 43 48 44
Note:
See TracChangeset
for help on using the changeset viewer.