]> git.mxchange.org Git - addressbook-war.git/commitdiff
Don't cherry-pick: (addressbook-specific)
authorRoland Häder <roland@mxchange.org>
Sun, 25 Jun 2017 11:15:26 +0000 (13:15 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 25 Jun 2017 11:15:26 +0000 (13:15 +0200)
- converted another div (class=table_row) to h:panelGroup
- well, I wanted here a "h:tableRow" or something, maybe one day I rewrite this

Signed-off-by: Roland Häder <roland@mxchange.org>
web/user/addressbook/login_add_addressbook.xhtml

index 9a2e40566ea472b11a0dde7dab42c6cdaf069845..0f5605d3ccb725d988be0ab9058aab3144b7140c 100644 (file)
                <ui:define name="content">
                        <ui:fragment rendered="#{userLoginController.isUserLoggedIn()}">
                                <h:form id="form_add_addressbook" acceptcharset="utf-8">
-                                       <div class="table">
+                                       <h:panelGroup styleClass="table" layout="block">
                                                <div class="table_header">
                                                        <h:outputText value="#{msg.FORM_LOGIN_ADD_ADDRESSBOOK_TITLE}" />
                                                </div>
 
-                                               <div class="table_row">
+                                               <h:panelGroup styleClass="table_row" layout="block">
                                                        <div class="table_left">
                                                                <h:outputLabel for="addressbookName" value="#{msg.LOGIN_ENTER_ADDRESSBOOK_NAME}"/>
                                                        </div>
                                                                        <f:validator for="addressbookName" validatorId="NameValidator" />
                                                                </h:inputText>
                                                        </div>
-                                               </div>
+                                               </h:panelGroup>
 
                                                <div class="table_footer">
                                                        <h:commandButton styleClass="reset" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
                                                        <h:commandButton styleClass="submit" type="submit" id="add_addressbook" value="#{msg.BUTTON_LOGIN_ADD_ADDRESSBOOK}" action="#{addressbookController.addAddressbook()}" />
                                                </div>
-                                       </div>
+                                       </h:panelGroup>
                                </h:form>
                        </ui:fragment>