我想把不可见的“报表块C”再页面加载后2秒后显示出来,我写的有问题,没有效果,请大神们指点一下该怎么写:
我是这样写的:我是这样写的,
setTimeout(function() { form.getWidgetByName('报表块C').setVisible(true) }, 2000);
var th=this; setTimeout(function() { th.setVisible(true); }, 2000);
简单的方法,写在报表块初始化事件
js代码
setTimeout(function() { this.options.form.getWidgetByName('report0').setVisible(true); }, 2000);