我是通过按钮的点击事件来实现弹出子报表的,如下代码
window.form = this.options.form; //当前的form赋值给全局变量
var $iframe = $(""); // iframe参数的命名及宽高等
$iframe.attr("src", "123.cpt&op=write");
//为点击查询时,对话框中显示的子报表
var o = {
title : "",
width : 1000,
height: 400
};
FR.showDialog(o.title, o.width, o.height, $iframe,o); //弹出对话框
请教一下大神们,怎么把主报表的当前登录用户传输到子报表呢