可以直接报表初始化事件,写定时函数,去值做判断,符合js弹窗
setInterval(function() {
var a=_g().options.form.getWidgetByName("report0").element.find("td[id^=A1-]").text();//获取报表块report0的A1单元格值
if(a=="1")
{
var url = FR.cjkEncode("/webroot/decision/view/report?viewlet=GettingStarted.cpt&op=write");
//窗体
var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>");
//将窗体的src属性设置为模板路径
$iframe.attr("src", url);
//窗体的属性
var o = {
title: "对话框", //标题
width: 680, //宽度
height: 640, //高度
//closable:true, //是否显示关闭按钮,默认true
//confirm:true, //是否添加确认取消按钮,默认false
//draggable:true //是否可拖动,默认true
};
//弹出窗体
FR.showDialog(o.title, o.width, o.height, $iframe, o);
}
}, 1000)//每1000毫秒定时判断一次