1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <ice:panelGroup style="height : 500px; border : 1px white; ">
<ice:panelGroup styleClass="tableDataTest">
<h:dataTable rows="15" captionClass="titleData" value="#{Acceptors_1.acceptors}" var="item"
id="dataTable" binding="#{Acceptors_1.dataTable}" cellspacing="0">
<f:facet name="caption">
<h:outputText value="#{bundle.acceptors_title}"/>
</f:facet>
<h:column headerClass="tableDataHeader_left">
<f:facet name="header">
<h:outputText value="#{bundle.name}"/>
</f:facet>
<h:commandLink styleClass="#{item.status}" action="#{Acceptors_1.linkAcceptor_action}" immediate="true">
<h:outputText value="#{item.name}"/>
</h:commandLink>
</h:column>
<h:column headerClass="tableDataHeader_middle">
<f:facet name="header">
<h:outputText value="#{bundle.acceptors_terminalsKind}"/>
</f:facet>
<parser:toText list="#{item.managedTerminalKinds}" property="name" separator=", "/>
</h:column>
<h:column headerClass="tableDataHeader_middle">
<f:facet name="header">
<h:outputText value="#{bundle.acceptors_tmsAccount}"/>
</f:facet>
<h:outputText value="#{item.TMSAccount}"/>
</h:column>
<h:column headerClass="tableDataHeader_right">
<f:facet name="header">
<h:outputText value=" "/>
</f:facet>
<center>
<h:commandLink id="imgLinkEdit" action="#{Acceptors_1.imgLinkEdit_action}" immediate="true">
<h:graphicImage alt="#{bundle.edit}" title="Edit" value="../../resources/images/edit.gif"/>
</h:commandLink>
</center>
</h:column>
</h:dataTable>
</ice:panelGroup>
</ice:panelGroup> |
Partager