选中单选按钮1,则下拉框控件b隐藏,怎么写? 单选组事件选状态改变后,出来效果不对
var cx= this.options.form.getWidgetByName("cx");
var jg= this.options.form.getWidgetByName("jg");
if(cx=0) {
jg.setVisible(true);
} else {
jg.setVisible(false);
}
1、0显示
2、1隐藏
单选按钮需要获取控件值:
var table = this.options.form.getWidgetByName("table");//获取单选按钮控件table
var b= this.options.form.getWidgetByName("b");//获取下拉框控件b
var thislen = this.getValue();//获取table控件中值
if(thislen == '0') {
b.setVisible(true);
b.setVisible(false);
https://help.fanruan.com/finereport/doc-view-1195.html ---参数栏控件按需显示,控件联动,控件隐藏