Browse Source

Pull request #9169: REPORT-71908 组合图配置条件属性汇总字段值,设置后条件属性内容被清空了

Merge in DESIGN/design from ~PENGDA/design:feature/x to feature/x

* commit '991d513eb4d9f576318d2d8291b9df444f5a901d':
  REPORT-71908 组合图配置条件属性汇总字段值,设置后条件属性内容被清空了
feature/x
pengda 3 years ago
parent
commit
14138cca79
  1. 6
      designer-chart/src/main/java/com/fr/van/chart/custom/other/VanChartCustomPlotConditionAttrTabPane.java

6
designer-chart/src/main/java/com/fr/van/chart/custom/other/VanChartCustomPlotConditionAttrTabPane.java

@ -92,7 +92,11 @@ public class VanChartCustomPlotConditionAttrTabPane extends VanChartCustomPlotTa
CustomPlotType plotType = CustomPlotFactory.getCustomType(chartPlot);
VanChartRichEditorPane.refreshCustomChartTableFieldNames(chart, plotType);
ColSelectedWithSummaryMethodEditor.refreshCustomChartTableFieldNames(chart,plotType);
ColSelectedWithSummaryMethodEditor.refreshCustomChartTableFieldNames(chart, plotType);
JPanel selectedPane = paneList.get(index);
if (chart != null && chartPlot != null && selectedPane instanceof VanChartConditionAttrPane) {
((VanChartConditionAttrPane) selectedPane).populateBean(chartPlot);
}
}
}

Loading…
Cancel
Save