Changeset 849 for vanHelsing/trunk/gui/WebContent
- Timestamp:
- Mar 23, 2010, 3:01:06 PM (15 years ago)
- Location:
- vanHelsing/trunk/gui/WebContent
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
vanHelsing/trunk/gui/WebContent/index.jsp
r848 r849 1 < html>1 <!-- <html> 2 2 <head> 3 3 </head> 4 4 <frameset cols="250,*"> 5 5 <frame src="viewConfig.iface" name="links"> 6 < !-- <frame src="client.iface" name="rechts"> -->6 <frame src="leereSeite.iface" name="rechts"> 7 7 <noframes> 8 8 <body> … … 11 11 </noframes> 12 12 </frameset> 13 </html> --> 14 <html> 15 <head></head> 16 <body> 17 <jsp:forward page="viewConfig.iface" /> 18 </body> 13 19 </html> -
vanHelsing/trunk/gui/WebContent/leereSeite.jspx
r848 r849 32 32 <ice:outputText value="Value" /> 33 33 </f:facet> 34 <ice:outputText value="#{item. value}" />34 <ice:outputText value="#{item.keyValue}" /> 35 35 </ice:column> 36 36 -
vanHelsing/trunk/gui/WebContent/viewConfig.jspx
r848 r849 40 40 </ice:form> 41 41 </ice:panelGroup> 42 43 44 42 <ice:panelGroup style="margin: 0; padding: 0;width:350px;" > 43 <ice:panelGrid cellpadding="0" cellspacing="3" 44 columns="2" rendered="#{configurationBean.selectedObject != null}"> 45 <ice:dataTable 46 var="item" 47 value="#{configurationBean.selectedObject}" 48 > 49 <ice:column> 50 <f:facet name="header"> 51 <ice:outputText value="Key" /> 52 </f:facet> 53 <ice:outputText value="#{item.key}" /> 54 </ice:column> 55 <ice:column> 56 <f:facet name="header"> 57 <ice:outputText value="Value" /> 58 </f:facet> 59 <ice:outputText value="#{item.keyValue}" /> 60 </ice:column> 61 </ice:dataTable> 62 </ice:panelGrid> 63 </ice:panelGroup> 45 64 <ice:form> 46 65 <ice:messages/>
Note:
See TracChangeset
for help on using the changeset viewer.