-
Type:
Feature Request
-
Status: Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 7.0.0 DXP GA1, 7.0.X, Master
-
Fix Version/s: None
-
Component/s: ~[Archived] UI Taglibs
-
Labels:None
The customer would like to increase the max web content entries per page to higher than 200 as it is the maximum at the moment according to https://docs.liferay.com/portal/7.2-latest/propertiesdoc/portal.properties.html the search.container.page.delta.values portal propertie.
The 200 value is hardcoded by the MAX_DELTA variable:
https://github.com/liferay/liferay-portal/blob/master/portal-kernel/src/com/liferay/portal/kernel/dao/search/SearchContainer.java#L69
public static final int MAX_DELTA = 200;
The customer is asking for a property that can make the MAX_DELTA configurable "search.container.page.max.delta" where it allows to set the maximum entry limit as required by the user.