单元格按钮弹出框

ww.png

问题如图 单元格按钮弹出框js如何写

FineReport 勇敢的打工人 发布于 2021-7-6 09:57
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共3回答
最佳回答
0
snrtuemcLv8专家互助
发布于2021-7-6 09:58

按钮弹出窗口js代码

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);

最佳回答
1
Z4u3z1Lv6专家互助
发布于2021-7-6 10:00

不知道你要的是不是这个??

var config = {

title: '扎帐情况',

width: 455,

height: 540,

url: "${servletURL}?viewlet=" + FR.cjkEncode("数据更新/扎帐情况") + ".cpt&ref_t=design&ref_t=design&op=view"

};

FR.showIframeDialog(config);

最佳回答
1
烟尘Lv6高级互助
发布于2021-7-6 10:00(编辑于 2021-7-6 10:01)

JS实现弹窗后数据回填-https://help.fanruan.com/finereport/doc-view-3127.html

window.form = this.options.form; //当前的form赋值给全局变量

var $iframe = $("

$iframe.attr("src", "${servletURL}?reportlet=test.cpt&ref_t=design&op=write&ref_c=9e2cfd00-e8b1-4f7a-b870-bd0574f39811"); 

//点击时,对话框中显示子报表

var o = {

title : "子窗口",

width : 500,//调整对话框宽度

height: 420//调整对话框高度

};

FR.showDialog(o.title, o.width, o.height, $iframe,o); //弹出对话框

  • 3关注人数
  • 463浏览人数
  • 最后回答于:2021-7-6 10:01
    请选择关闭问题的原因
    确定 取消
    返回顶部