0
|
afr751116发布于2017-1-6 10:07(编辑于 2023-9-6 09:34)
|
555
|
-
gxy120313
js写在你想添加弹出框的单元格控件中,添加一个参数id,js如下:
window.form = this.options.form; //把参数界面的form赋值给全局变量
var $iframe = $(\"<iframe id=\'inp\' name=\'inp\' width=\'100%\' height=\'100%\' scrolling=\'no\' frameborder=\'0\'>\"); // iframe参数的命名及宽高等
$iframe.attr(\"src\", \"${servletURL}?reportlet=ID.cpt&op=write&id=\"+id); //childtest.cpt为点击查询时,对话框中显示的子报表
var o = {
title : \"请选择记录项\",
width : 600,
height: 300
};
FR.showDialog(o.title, o.width, o.height, $iframe,o); //首先弹出对话框
|
|