]> git.mxchange.org Git - jjobs-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sun, 29 Mar 2020 22:33:19 +0000 (00:33 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 2 Apr 2020 16:39:47 +0000 (18:39 +0200)
- was still using contactController.allContacts() should be
  contactListController.allContacts as "allContacts" is a bean property now.

Signed-off-by: Roland Häder <roland@mxchange.org>
web/WEB-INF/templates/admin/employee/admin_form_employee_data.tpl
web/admin/contact/admin_contact_export.xhtml

index 1d42dbe8c1981a46a55d5863439c14cb12041046..85c42867b7793df3dc2a2a4452e5782175b05ae8 100644 (file)
@@ -78,7 +78,7 @@
                                <f:selectItem itemValue="#{null}" itemLabel="#{msg.NONE_SELECTED}" />
 
                                <f:selectItems
-                                       value="#{contactController.allContacts()}"
+                                       value="#{contactListController.allContacts}"
                                        var="contact"
                                        itemValue="#{contact}"
                                        itemLabel="#{beanHelper.renderContact(contact)}"
index 9f308c5916c8c2209f8f4ff856ef8dcb5f338639..0db88b4fa85e81150894d99747559029935fb6c7 100644 (file)
        </ui:define>
 
        <ui:define name="content">
-               <h:form rendered="#{not contactController.allContacts().isEmpty()}">
+               <h:form rendered="#{not contactListController.allContacts.isEmpty()}">
                        <p:dataTable
                                id="table_export_contacts"
                                var="contact"
-                               value="#{contactController.allContacts()}"
+                               value="#{contactListController.allContacts}"
                                paginator="true"
                                rows="10"
                                emptyMessage="#{msg.ADMIN_EMPTY_LIST_CONTACT}"