|
@@ -6,9 +6,9 @@ let JpcCommonOutputHelper = {
|
|
|
createCommonOutputWithoutDecorate: function (node, value, forceCombine) {
|
|
|
let me = this, rst = {};
|
|
|
//1. font/style/control
|
|
|
- rst[JV.PROP_FONT] = node[[JV.PROP_FONT]];
|
|
|
- rst[JV.PROP_CONTROL] = node[[JV.PROP_CONTROL]];
|
|
|
- rst[JV.PROP_STYLE] = node[[JV.PROP_STYLE]];
|
|
|
+ rst[JV.PROP_FONT] = node[JV.PROP_FONT];
|
|
|
+ rst[JV.PROP_CONTROL] = node[JV.PROP_CONTROL];
|
|
|
+ rst[JV.PROP_STYLE] = node[JV.PROP_STYLE];
|
|
|
//2. value
|
|
|
rst[JV.PROP_VALUE] = value;
|
|
|
me.formatCell(node[JV.PROP_FORMAT], rst);
|
|
@@ -28,9 +28,9 @@ let JpcCommonOutputHelper = {
|
|
|
createCommonOutput: function (node, value, controls) {
|
|
|
let me = this, rst = {};
|
|
|
//1. font/style/control
|
|
|
- rst[JV.PROP_FONT] = node[[JV.PROP_FONT]];
|
|
|
- rst[JV.PROP_CONTROL] = node[[JV.PROP_CONTROL]];
|
|
|
- rst[JV.PROP_STYLE] = node[[JV.PROP_STYLE]];
|
|
|
+ rst[JV.PROP_FONT] = node[JV.PROP_FONT];
|
|
|
+ rst[JV.PROP_CONTROL] = node[JV.PROP_CONTROL];
|
|
|
+ rst[JV.PROP_STYLE] = node[JV.PROP_STYLE];
|
|
|
//2. value
|
|
|
rst[JV.PROP_VALUE] = value;
|
|
|
JpcFieldHelper.decorateValue(rst, controls);
|