WorkBook2.rar
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);
}
可以啊,之前做的年月日的隐藏
是看看是不是参数值没有获取到 拿alert测试一下