报表块A初始化事件
var th = this;
setTimeout(function() {
$("div[widgetName^=REPORT]").hover(function() {
th.options.form.getWidgetByName('report1').setVisible(true);
},
function() {
th.options.form.getWidgetByName('report1').setVisible(false);
}
)
}, 100)
==============
var th = this;
setTimeout(function() {
th.options.form.getWidgetByName('report1').setVisible(false);
}, 100)