Author: lektran
Date: Mon Aug 31 12:16:51 2009
New Revision: 809554
URL:
http://svn.apache.org/viewvc?rev=809554&view=revLog:
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;