查询按钮不可用事件是哪个?点击查询按钮间隔一分钟后才刷新,一分钟之内点击不刷新,如何写点击事件?
https://help.fanruan.com/finereport10.0/doc-view-4007.html 点击后将控件置为不可用,然后延时一分钟后再置为可用
----------
https://help.fanruan.com/finereport8.0/doc-view-1181.html 8.0控件接口
WorkBook1.rar
--------
var Widget = this.options.form.getWidgetByName("formSubmit0");
setTimeout(function() { //SetInterval:每100毫秒执行一次,setTimeout:100毫秒后执行一次
Widget.setEnable(false);
//Widget.invisible();
}, 100);
Widget.visible();
Widget.setEnable(true);
}, 1000*60);