Author: jleroux
Date: Thu Aug 26 17:11:43 2010
New Revision: 989829
URL:
http://svn.apache.org/viewvc?rev=989829&view=revLog:
Fix a bug in setDependentDropdownValuesJs.ftl (used in conjunction with getDependentDropdownValues.js)
I just realize that I missed to change from maindId to paramKey in the observe event. It works with country where the values are the same (countryGeoId), but in other cases it does not (notably in the issue reported at
https://issues.apache.org/jira/browse/OFBIZ-3247Modified:
ofbiz/trunk/framework/common/webcommon/includes/setDependentDropdownValuesJs.ftl
Modified: ofbiz/trunk/framework/common/webcommon/includes/setDependentDropdownValuesJs.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/webcommon/includes/setDependentDropdownValuesJs.ftl?rev=989829&r1=989828&r2=989829&view=diff==============================================================================
--- ofbiz/trunk/framework/common/webcommon/includes/setDependentDropdownValuesJs.ftl (original)
+++ ofbiz/trunk/framework/common/webcommon/includes/setDependentDropdownValuesJs.ftl Thu Aug 26 17:11:43 2010
@@ -20,7 +20,7 @@ under the License.
Event.observe(window, 'load', function() {
if ($('${dependentForm}')) {
Event.observe($('${dependentForm}_${mainId}'), 'change', function() {
- getDependentDropdownValues('${requestName}', '${mainId}', '${dependentForm}_${mainId}', '${dependentForm}_${dependentId}', '${responseName}', '${dependentId}', '${descName}', '', '');
+ getDependentDropdownValues('${requestName}', '${paramKey}', '${dependentForm}_${mainId}', '${dependentForm}_${dependentId}', '${responseName}', '${dependentId}', '${descName}', '', '');
});
getDependentDropdownValues('${requestName}', '${paramKey}', '${dependentForm}_${mainId}', '${dependentForm}_${dependentId}', '${responseName}', '${dependentId}', '${descName}', '${selectedDependentOption}', '');
}