- 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>
<f:selectItem itemValue="#{null}" itemLabel="#{msg.NONE_SELECTED}" />
<f:selectItems
- value="#{contactController.allContacts()}"
+ value="#{contactListController.allContacts}"
var="contact"
itemValue="#{contact}"
itemLabel="#{beanHelper.renderContact(contact)}"
</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}"