JS根据条件显示参数控件-https://help.fanruan.com/finereport/doc-view-1195.html
教程参数面板用了this.options.form.getWidgetByName("label3").setVisible(true);
填报页面,改成
contentPane.getWidgetByName("label3").setVisible(false);
不可以不可见 是不是就不用控件?
反向行之。
直接在单元格控件写事件就可以了,
if(xxx){
this.setVisible(false);
}else{this.setVisible(true);}