按钮点击事件
var a=this.getValue();
if(a=="隐藏"){
_g().getWidgetByName('report0').setVisible(false);
this.options.form.getWidgetByName("控件名").setValue("显示");
this.options.form.getWidgetByName("控件名").setText("显示");
}
else {
_g().getWidgetByName('report0').setVisible(true);
this.options.form.getWidgetByName("控件名").setValue("隐藏");
this.options.form.getWidgetByName("控件名").setText("隐藏");
}