Kaydet (Commit) 42af84d9 authored tarafından Ocke Janssen [oj]'s avatar Ocke Janssen [oj]

dba33h: #i114106# fix missing value-type

üst 2d9f7d9a
...@@ -84,6 +84,13 @@ public class TableCellLayoutController extends SectionLayoutController ...@@ -84,6 +84,13 @@ public class TableCellLayoutController extends SectionLayoutController
attributeMap.setAttribute(OfficeNamespaces.OFFICE_NS, attributeMap.setAttribute(OfficeNamespaces.OFFICE_NS,
FormatValueUtility.VALUE, "NaN"); FormatValueUtility.VALUE, "NaN");
} }
// #i114108#: except on form elements, the only value-type that can
// occur without an accomanying value attribute is "string"
else if (!"string".equals(valueType))
{
attributeMap.setAttribute(OfficeNamespaces.OFFICE_NS,
FormatValueUtility.VALUE_TYPE, "string");
}
} }
catch (Exception e) catch (Exception e)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment