Hello Scott,

Pagination is not working, Due to few changes below in your commit r808820.

Modified: ofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductSearch.java
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductSearch.java?rev=808820&r1=808819&r2=808820&view=diff
==============================================================================
--- 
ofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductSearch.java
 (original)
+++ 
ofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductSearch.java
 Fri Aug 28 08:58:10 2009
@@ -639,6 +639,9 @@
             EntityFindOptions efo = new EntityFindOptions();
             efo.setDistinct(true);
             efo.setResultSetType(EntityFindOptions.TYPE_SCROLL_INSENSITIVE);
+            if (maxResults != null) {
+                efo.setMaxRows(maxResults);
+            }
Create Problem:-

1) Hit URL  https://localhost:8443/catalog/control/advancedsearch
2) Select Demo Catalog.
3) Depress "Find" button..
4) Will be showing only 25 records (But actually having 39 records).

When we revert the above changes, It works. So please have a look on it.

Thanks & Regards,
-Amit Sharma

Reply via email to