饼图添加JS进行跳转,设置跳转其他表路径如何变成弹窗显示

在饼图里添加了JS进行跳转,跳转其他表路径时,可不可以变成弹窗显示image.png

FineReport 希泽不困 发布于 2023-1-5 16:18
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
1
snrtuemcLv8专家互助
发布于2023-1-5 16:19

var a="1";

var b="2";

var url="/webroot/decision/view/report?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
free_zzLv6中级互助
发布于2023-1-5 16:20(编辑于 2023-1-5 16:20)

var start_date = this.options.form.getWidgetByName("start_date").getValue();

var end_date = this.options.form.getWidgetByName("end_date").getValue();

var central_city_id = this.options.form.getWidgetByName("central_city_id").getValue();

var apptype = this.options.form.getWidgetByName("apptype").getValue();

var Width = 1200;

var Height = 650;

var url = FR.cjkEncode("${servletURL}?viewlet=/demo.cpt");

 

FR.doHyperlinkByPost({

    url: url,

    title: '中心城市汇总',

    feature: "width=" + Width + ",height=" + Height + ",",

    para: {

        start_date:start_date,

       end_date:end_date,

       central_city_id:central_city_id,

       apptype:apptype     

    },

    target: '_dialog'

});

  • 2关注人数
  • 429浏览人数
  • 最后回答于:2023-1-5 16:20
    请选择关闭问题的原因
    确定 取消
    返回顶部