Author: ashish
Date: Mon Mar 21 12:22:47 2011
New Revision: 1083757
URL:
http://svn.apache.org/viewvc?rev=1083757&view=revLog:
Bug fix: Initialize fieldValue variable to avoid missingPropertyException for FindAutocompleteOptions.grovy file. This has been fixed in trunk. Thanks Deepak.
Modified:
ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy
Modified: ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy?rev=1083757&r1=1083756&r2=1083757&view=diff==============================================================================
--- ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy (original)
+++ ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy Mon Mar 21 12:22:47 2011
@@ -27,6 +27,7 @@ import org.ofbiz.entity.condition.Entity
import org.ofbiz.entity.condition.EntityOperator;
andExprs = [];
+fieldValue = null;
entityName = context.entityName;
searchFields = context.searchFields;
displayFields = context.displayFields ?: searchFields;