Author: jacopoc
Date: Sun Aug 30 06:17:06 2009
New Revision: 809249
URL:
http://svn.apache.org/viewvc?rev=809249&view=revLog:
Based on feedback from Scott Gray, removed space between fields separated by commas in CSV exports: it was causing values with quoted texts in fields imported in Excel.
Modified:
ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl
Modified: ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl?rev=809249&r1=809248&r2=809249&view=diff==============================================================================
--- ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl (original)
+++ ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl Sun Aug 30 06:17:06 2009
@@ -20,7 +20,7 @@
<#macro renderField text><#if text?exists>${text?replace(",", "")}</#if></#macro>
<#macro renderDisplayField idName description class alert inPlaceEditorId="" inPlaceEditorUrl="" inPlaceEditorParams="">
-<@renderField description />, <#rt/>
+<@renderField description />,<#rt/>
</#macro>
<#macro renderHyperlinkField></#macro>