js实现网络报表对话框格式

想用js实现网络报表,对话框的形式

image.png

FineReport 帆软用户doraVX4Qmy 发布于 2024-10-22 09:38
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共3回答
最佳回答
1
华莉星宸Lv7资深互助
发布于2024-10-22 09:40(编辑于 2024-10-22 09:45)

FR.doHyperlink(event||window.event, [{"data":"var as=arguments; return FR.tc(function(){FR.doHyperlinkByGet4Reportlet({\"url\":\"/webroot/decision/view/report?viewlet=%252FGettingStarted.cpt\",\"para\":{\"__pi__\":true},\"target\":\"_dialog\",\"feature\":{\"width\":600,\"height\":400,\"isCenter\":true,\"title\":\"对话框标题\"},\"title\":\"网络报表1\"})}, this, as)","name":"网络报表1"}], true)

===========================

上面的格式不是很标准

参考这个

image.png

借用浏览器功能写JS语句 https://help.fanruan.com/finereport/doc-view-1923.html

222

最佳回答
1
snrtuemcLv8专家互助
发布于2024-10-22 09:40

var a=_g().getWidgetByName("控件名1").getValue();

var b=_g().getWidgetByName("控件名2").getValue();

var url="/webroot/decision/view/report?viewlet=GettingStarted.cpt&op=write&a="+a+"&b="+b;

//或者这个格式 var url="${servletURL}?viewlet=GettingStarted.cpt&op=write&a="+a+"&b="+b;

var url = FR.cjkEncode(url);

//窗体

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,         //宽度,可以换成w/2,自适应

    height: 640,        //高度

    //closable:true,    //是否显示关闭按钮,默认true

    //confirm:true,     //是否添加确认取消按钮,默认false

    //draggable:true   //是否可拖动,默认true

};

//弹出窗体

FR.showDialog(o.title, o.width, o.height, $iframe, o);

最佳回答
0
runnerLv7资深互助
发布于2024-10-22 09:39(编辑于 2024-10-22 09:41)
  • 4关注人数
  • 107浏览人数
  • 最后回答于:2024-10-22 09:45
    请选择关闭问题的原因
    确定 取消
    返回顶部