You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by le...@apache.org on 2009/08/31 14:16:51 UTC

svn commit: r809554 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy

Author: lektran
Date: Mon Aug 31 12:16:51 2009
New Revision: 809554

URL: http://svn.apache.org/viewvc?rev=809554&view=rev
Log:
Missed switching a result set back to TYPE_SCROLL_INSENSITIVE, reported by Mridul

Modified:
    ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy

Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy?rev=809554&r1=809553&r2=809554&view=diff
==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy Mon Aug 31 12:16:51 2009
@@ -157,7 +157,7 @@
 
             EntityFindOptions efo = new EntityFindOptions();
             efo.setMaxRows(highIndex);
-            efo.setResultSetType(EntityFindOptions.TYPE_FORWARD_ONLY);
+            efo.setResultSetType(EntityFindOptions.TYPE_SCROLL_INSENSITIVE);
             EntityListIterator resultEli = null;
             fieldsToSelect = null;