WorkBook2.rar
这是10.0的
var type = this.options.form.getWidgetByName("d_type").getValue();//获取下拉框控件d_type
if(type == "年") {
this.options.form.getWidgetByName("年").setVisible(true);
this.options.form.getWidgetByName("月").setVisible(false);
} else if(type == "月") {
this.options.form.getWidgetByName("月").setVisible(true);
this.options.form.getWidgetByName("年").setVisible(false);
}
现写了一个,写的年和月
WorkBook3.rar