普通报表参数面板中存在控件A、B,控件A的可选值为1、2。如何实现当A控件选择1时,显示B控件,选择2时,B控件隐藏不显示?
https://help.fanruan.com/finereport/doc-view-1195.html ---参数栏控件按需显示,控件联动,控件隐藏
var a=this.options.form.getWidgetByName("A").getValue();//
if(a=="1")
{
this.options.form.getWidgetByName("B").setEnable(false);//不可用
}
else
{this.options.form.getWidgetByName("B").setEnable(true);//可用