Form1.zip
增加一个辅助控件,不可见,通过赋予不同值来判断控件显示隐藏
var a=this.options.form.getWidgetByName("textEditor0").getValue();
if(a=='1'){
this.options.form.getWidgetByName("comboBox0").setVisible(false);
this.options.form.getWidgetByName("textEditor0").setValue("2");
}else{
this.options.form.getWidgetByName("comboBox0").setVisible(true);
this.options.form.getWidgetByName("textEditor0").setValue("1");
}