Author: erwan
Date: Mon Jun 14 13:12:06 2010
New Revision: 954437
URL:
http://svn.apache.org/viewvc?rev=954437&view=revLog:
Allows to parameterize a form id
Modified:
ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java
Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java?rev=954437&r1=954436&r2=954437&view=diff==============================================================================
--- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java (original)
+++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java Mon Jun 14 13:12:06 2010
@@ -1986,12 +1986,18 @@ public class ModelForm extends ModelWidg
}
public String getCurrentContainerId(Map<String, Object> context) {
+ Locale locale = UtilMisc.ensureLocale(context.get("locale"));
+ MapStack<String> localContext = MapStack.create(context);
+
+ FlexibleStringExpander containerIdExpander = FlexibleStringExpander.getInstance(this.getContainerId());
+ String retVal = containerIdExpander.expandString(localContext, locale);
+
Integer itemIndex = (Integer) context.get("itemIndex");
if (itemIndex != null && "list".equals(this.getType())) {
- return this.getContainerId() + this.getItemIndexSeparator() + itemIndex.intValue();
+ return retVal + this.getItemIndexSeparator() + itemIndex.intValue();
}
- return this.getContainerId();
+ return retVal;
}
public String getContainerStyle() {