Author: abelevich
Date: 2008-05-08 12:54:26 -0400 (Thu, 08 May 2008)
New Revision: 8509
Modified:
trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx
Log:
don't convert submittedValue
Modified: trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx
===================================================================
--- trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx 2008-05-08 16:53:27 UTC
(rev 8508)
+++ trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx 2008-05-08 16:54:26 UTC
(rev 8509)
@@ -29,8 +29,9 @@
Object value = component.getSubmittedValue();
if (value == null) {
value = component.getValue();
- }
- value = getConvertedStringValue(context, component,value);
+ value = getConvertedStringValue(context, component,value);
+ }
+
Object fieldValue = value;
if (value == null || value.equals("")) {
fieldValue = "";
Show replies by date