Ignore:
Timestamp:
Mar 23, 2010, 3:01:06 PM (14 years ago)
Author:
tobias
Message:

configView with item data

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>
    22    <head>
    33    </head>
    44    <frameset cols="250,*">
    55                <frame src="viewConfig.iface" name="links">
    6                 <!--  <frame src="client.iface" name="rechts"> -->
     6                <frame src="leereSeite.iface" name="rechts">
    77          <noframes>
    88            <body>
     
    1111          </noframes>
    1212        </frameset>
     13</html> -->
     14<html>
     15<head></head>
     16<body>
     17        <jsp:forward page="viewConfig.iface" />
     18</body>
    1319</html>
  • vanHelsing/trunk/gui/WebContent/leereSeite.jspx

    r848 r849  
    3232                         <ice:outputText value="Value" />
    3333                </f:facet>
    34                 <ice:outputText value="#{item.value}" />
     34                <ice:outputText value="#{item.keyValue}" />
    3535        </ice:column>
    3636 
  • vanHelsing/trunk/gui/WebContent/viewConfig.jspx

    r848 r849  
    4040                    </ice:form>
    4141                </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>
    4564            <ice:form>
    4665                    <ice:messages/>     
Note: See TracChangeset for help on using the changeset viewer.