]> git.mxchange.org Git - addressbook-war.git/commitdiff
don't miss h:column!
authorRoland Haeder <roland@mxchange.org>
Wed, 14 Oct 2015 13:08:56 +0000 (15:08 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 14 Oct 2015 13:08:56 +0000 (15:08 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

web/login/login_user_list.xhtml

index 134990f6d2b039ebeb030af2be5499c5c086714a..8c53529f2bdffcd3f8b7ad55bb32ed35e09d53d3 100644 (file)
                                </div>
 
                                <h:dataTable id="userList" var="user" value="#{userController.allPublicUsers()}" headerClass="table_header_column25" summary="#{msg.TABLE_SUMMARY_LOGIN_USER_LIST}" rendered="#{userController.isPublicUserRegistered()}">
-                                       <f:facet name="header">#{msg.USER_ID}</f:facet>
-                                       <h:link outcome="login_user_profile" value="#{user.userId}">
-                                               <f:param name="profile" value="#{user.userId}" />
-                                       </h:link>
+                                       <h:column>
+                                               <f:facet name="header">#{msg.USER_ID}</f:facet>
+                                               <h:link outcome="login_user_profile" value="#{user.userId}">
+                                                       <f:param name="profile" value="#{user.userId}" />
+                                               </h:link>
+                                       </h:column>
 
-                                       <f:facet name="header">#{msg.USER_NAME}</f:facet>
-                                       <h:link outcome="login_user_profile" value="#{user.userName}">
-                                               <f:param name="profile" value="#{user.userId}" />
-                                       </h:link>
+                                       <h:column>
+                                               <f:facet name="header">#{msg.USER_NAME}</f:facet>
+                                               <h:link outcome="login_user_profile" value="#{user.userName}">
+                                                       <f:param name="profile" value="#{user.userId}" />
+                                               </h:link>
+                                       </h:column>
 
-                                       <f:facet name="header">#{msg.USER_CREATED}</f:facet>
-                                       <h:outputFormat id="userCreated" value="#{user.userCreated.time}" title="#{msg.USER_CREATED_TITLE}">
-                                               <f:convertDateTime for="addressbookCreated" type="both" timeStyle="short" dateStyle="medium" />
-                                       </h:outputFormat>
+                                       <h:column>
+                                               <f:facet name="header">#{msg.USER_CREATED}</f:facet>
+                                               <h:outputFormat id="userCreated" value="#{user.userCreated.time}" title="#{msg.USER_CREATED_TITLE}">
+                                                       <f:convertDateTime for="addressbookCreated" type="both" timeStyle="short" dateStyle="medium" />
+                                               </h:outputFormat>
+                                       </h:column>
 
-                                       <f:facet name="header">#{msg.USER_LIST_SHARING_ADDRESSBOOKS}</f:facet>
-                                       <h:link outcome="login_list_sharing_addressbooks" value="#{msg.LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS}" title="#{msg.LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS_TITLE}">
-                                               <f:param name="profile" value="#{user.userId}" />
-                                       </h:link>
+                                       <h:column>
+                                               <f:facet name="header">#{msg.USER_LIST_SHARING_ADDRESSBOOKS}</f:facet>
+                                               <h:link outcome="login_list_sharing_addressbooks" value="#{msg.LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS}" title="#{msg.LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS_TITLE}">
+                                                       <f:param name="profile" value="#{user.userId}" />
+                                               </h:link>
+                                       </h:column>
                                </h:dataTable>
                        </div>
                </ui:define>