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><ice:outputText value="ICEfaces, Ajax for Java EE" /></title>
|
---|
13 | <ice:outputStyle href="./xmlhttp/css/rime/rime.css" />
|
---|
14 | </head>
|
---|
15 | <body>
|
---|
16 | <ice:panelGroup id="fileSet" style="visibility:visible">
|
---|
17 | <ice:panelGrid columns="2">
|
---|
18 | <ice:form>
|
---|
19 | <ice:outputLabel for="catalog.name" value="name: " />
|
---|
20 | <ice:inputText id="catalog.name" value="#{baum.selectedNode.catalogItem.name}" />
|
---|
21 | <ice:outputLabel for="catalog.password" value="password: " />
|
---|
22 | <ice:inputText id="catalog.password" value="#{baum.selectedNode.catalogItem.password}" />
|
---|
23 | <ice:outputLabel for="catalog.dbName" value="dbName: " />
|
---|
24 | <ice:inputText id="catalog.dbName" value="#{baum.selectedNode.catalogItem.dbName}" />
|
---|
25 | <ice:outputLabel for="catalog.user" value="user: " />
|
---|
26 | <ice:inputText id="catalog.user" value="#{baum.selectedNode.catalogItem.user}" />
|
---|
27 | <ice:outputLabel for="catalog.dbSocket" value="dbSocket: " />
|
---|
28 | <ice:inputText id="catalog.dbSocket" value="#{baum.selectedNode.catalogItem.dbSocket}" />
|
---|
29 | <ice:outputLabel for="catalog.dbAddress" value="dbAddress: " />
|
---|
30 | <ice:inputText id="catalog.dbAddress" value="#{baum.selectedNode.catalogItem.dbAddress}" />
|
---|
31 | <ice:outputLabel for="catalog.dbPort" value="dbPort: " />
|
---|
32 | <ice:inputText id="catalog.dbPort" value="#{baum.selectedNode.catalogItem.dbPort}" />
|
---|
33 | </ice:form>
|
---|
34 | </ice:panelGrid>
|
---|
35 | </ice:panelGroup>
|
---|
36 | </body>
|
---|
37 | </html>
|
---|
38 | </f:view>
|
---|
39 | </jsp:root>
|
---|