]> git.mxchange.org Git - jjobs-war.git/commit
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Fri, 30 Mar 2018 17:36:50 +0000 (19:36 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 21 Jul 2019 06:05:53 +0000 (08:05 +0200)
commit713e8a4167443a28c6c514bcae30032f62afa11a
treee914f4365738854b8113c28f6d29756082e07bde
parentebb175d26478f5ead0de35dc2c0c020ddb75b261
Please cherry-pick:
- data output by a p:dataTable with pagination, filtering and sorting cannot
  come from a request-scoped bean as each AJAX request will reset the
  filteredValue-referenced bean property to null which leads to an empty table.
- better is to have a separate backing bean on view-scoped which holds both
  lists, the full ("all") list and filtered list (which are the items that have
  passed the filter).
- also had to update converters and validators
- finally, no need for javax.faces.STATE_SAVING_METHOD=client anymore! yeah!
- rewrote menu system (admin at least, guest and user login is following) to a
  menu-bar-based system which saves a lot space and is a more modern approach
- added filter for not caching xhtml (JSF view) requests

Signed-off-by: Roland Häder <roland@mxchange.org>
18 files changed:
src/java/org/mxchange/jjobs/beans/business/basicdata/JobsBasicDataWebRequestBean.java
src/java/org/mxchange/jjobs/beans/business/basicdata/JobsBasicDataWebRequestController.java
src/java/org/mxchange/jjobs/beans/business/basicdata/list/JobsBasicDataListWebViewBean.java [new file with mode: 0644]
src/java/org/mxchange/jjobs/beans/business/basicdata/list/JobsBasicDataListWebViewController.java [new file with mode: 0644]
src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java
src/java/org/mxchange/jjobs/converter/business/basicdata/JobsBusinessContactConverter.java
src/java/org/mxchange/jjobs/filter/JobsNoCacheFilter.java [new file with mode: 0644]
src/java/org/mxchange/jjobs/validator/business/basicdata/JobsBasicDataCompanyNameValidator.java
src/java/org/mxchange/jjobs/validator/emailaddress/basicdata/JobsBasicDataEmailAddressValidator.java
src/java/org/mxchange/localization/generic_de_DE.properties
src/java/org/mxchange/localization/generic_en_US.properties
web/WEB-INF/templates/admin/admin_menu.tpl
web/WEB-INF/templates/admin/branch_office/admin_form_branch_office_data.tpl
web/WEB-INF/templates/admin/department/admin_form_department_data.tpl
web/WEB-INF/templates/admin/employee/admin_form_employee_data.tpl
web/WEB-INF/templates/base.tpl
web/WEB-INF/templates/widgets/locale_change_widget.tpl
web/WEB-INF/web.xml