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

configView with item data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.