You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, working on a vanilla clone, I've set Primefaces to v. 11.0.0 and it breaks the app.
Moreover, it seems that even v. 10.0.0 isn't working as expected, out-of-the box because apparently the newer versions (after 8) have different requirements for LazyDataModel() - see load() method signature in CarListMB:
old (working):
public List<Car> load(int first, int pageSize,
String sortField, SortOrder sortOrder,
Map<String, FilterMeta> filters){...}
new (expected):
@Override
public List<Car> load(int first, int pageSize, Map<String, SortMeta> map,
Map<String, FilterMeta> map1) {...}
The text was updated successfully, but these errors were encountered:
Hi, working on a vanilla clone, I've set Primefaces to v. 11.0.0 and it breaks the app.
Moreover, it seems that even v. 10.0.0 isn't working as expected, out-of-the box because apparently the newer versions (after 8) have different requirements for LazyDataModel() - see load() method signature in CarListMB:
old (working):
new (expected):
The text was updated successfully, but these errors were encountered: