移动端模板,原来的JS需要进行修改才能实现控件隐藏,但现在我不知道该则么改。 要实现的功能是当YEARR控件值等于1时,YEAR控件显示,MONTH控件隐藏,当YEARR控件值等于2时,YEAR隐藏,MONTH显示 现在的JS代码: var a1 = this.options.form.getWidgetByName("YEARR").getValue();; //alert(a1); var b1 = this.options.form.getWidgetByName("YEAR"); var c1 = this.options.form.getWidgetByName("MONTH"); if (a1 == 1) { b1.options.form.getWidgetByName('YEAR').setVisible(true);; c1.options.form.getWidgetByName('MONTH').setVisible(false);;
} else { b1.options.form.getWidgetByName('YEAR').setVisible(false);; c1.options.form.getWidgetByName('MONTH').setVisible(true);;
} |