如果level是3或者4,那么全部的隐藏所有控件 if(a==3||a==4){ this.options.form.getWidgetByName("lab1").setEnable(false); this.options.form.getWidgetByName("statdate").setEnable(false); this.options.form.getWidgetByName("lab2").setEnable(false); this.options.form.getWidgetByName("org_lv2_code1").setEnable(false); this.options.form.getWidgetByName("lab3").setEnable(false); this.options.form.getWidgetByName("org_lv3_code1").setEnable(false); this.options.form.getWidgetByName("lab4").setEnable(false); this.options.form.getWidgetByName("org_lv4_code1").setEnable(false); this.options.form.getWidgetByName("button0").setEnable(false); this.options.form.getWidgetByName("Search").setEnable(false); }else { this.options.form.getWidgetByName("lab1").setEnable(true); this.options.form.getWidgetByName("statdate").setEnable(true); this.options.form.getWidgetByName("lab2").setEnable(true); this.options.form.getWidgetByName("org_lv2_code1").setEnable(true); this.options.form.getWidgetByName("lab3").setEnable(true); this.options.form.getWidgetByName("org_lv3_code1").setEnable(true); this.options.form.getWidgetByName("lab4").setEnable(true); this.options.form.getWidgetByName("org_lv4_code1").setEnable(true); this.options.form.getWidgetByName("button0").setEnable(true); this.options.form.getWidgetByName("Search").setEnable(true); }
|