A simpler way to do this would be to use:

<input size="6" type="text" name="price_${cartLineIndex}" value="${price?string.currency}"/>

-Adrian

[email protected] wrote:
Author: mor
Date: Wed May 27 16:06:48 2009
New Revision: 779221

URL: http://svn.apache.org/viewvc?rev=779221&view=rev
Log:
Localized Unit Price input field in showcartitems.ftl. Patch from Mridul 
Pathak, part of OFBIZ-2530 (https://issues.apache.org/jira/browse/OFBIZ-2530)

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl

Modified: 
ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl?rev=779221&r1=779220&r2=779221&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl 
(original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl 
Wed May 27 16:06:48 2009
@@ -250,7 +250,7 @@
                     <#else>
                         <#assign price = cartLine.getBasePrice()>
                     </#if>
-                    <input size="6" type="text" name="price_${cartLineIndex}" 
value="${price}"/>
+                    <input size="8" type="text" name="price_${cartLineIndex}" 
value="<@ofbizAmount amount=price/>"/>
                 </#if>
               </div>
             </td>



Reply via email to