|
|
@@ -30,6 +30,7 @@ let calculationTreeOprObj = {
|
|
|
let et = $("#exprRunType");
|
|
|
et.append("<option value='" + JV.RUN_TYPE_BEFORE_PAGING + "'>预运行</option>");
|
|
|
et.append("<option value='" + JV.RUN_TYPE_BEFORE_OUTPUT + "'>实时运行</option>");
|
|
|
+ et.append("<option value='" + JV.RUN_TYPE_BEFORE_ANALYZING + "'>数据分析前运行</option>");
|
|
|
et.append("<option value='" + JV.RUN_TYPE_BEFORE_COMBINE + "'>合并单元格前事件</option>");
|
|
|
et.append("<option value='" + JV.RUN_TYPE_AFTER_COMBINE + "'>合并单元格后事件</option>");
|
|
|
},
|
|
|
@@ -95,10 +96,12 @@ let calculationTreeOprObj = {
|
|
|
$("#exprRunType")[0].selectedIndex = 0;
|
|
|
} else if (treeNode[JV.PROP_RUN_TYPE] === JV.RUN_TYPE_BEFORE_OUTPUT) {
|
|
|
$("#exprRunType")[0].selectedIndex = 1;
|
|
|
- } else if (treeNode[JV.PROP_RUN_TYPE] === JV.RUN_TYPE_BEFORE_COMBINE) {
|
|
|
+ } else if (treeNode[JV.PROP_RUN_TYPE] === JV.RUN_TYPE_BEFORE_ANALYZING) {
|
|
|
$("#exprRunType")[0].selectedIndex = 2;
|
|
|
- } else {
|
|
|
+ } else if (treeNode[JV.PROP_RUN_TYPE] === JV.RUN_TYPE_BEFORE_COMBINE) {
|
|
|
$("#exprRunType")[0].selectedIndex = 3;
|
|
|
+ } else {
|
|
|
+ $("#exprRunType")[0].selectedIndex = 4;
|
|
|
}
|
|
|
$("#exprFormat")[0].value = (treeNode["format"])?treeNode["format"]:"";
|
|
|
$("#exprContent")[0].value = treeNode[JV.PROP_EXPRESSION];
|