怎么去掉弹框的“X”图标和蓝色背景

var $iframe = $("

$iframe.attr("src", "${servletURL}?viewlet=xxx.cpt&op=write"); //childtest.cpt为点击查询时,对话框中显示的子报表

var o = {

title: "",

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

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

};

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

image.png

FineReport 用户X7092250 发布于 2021-10-29 09:18 (编辑于 2021-10-29 09:20)
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
0
snrtuemcLv8专家互助
发布于2021-10-29 09:21

使用下面带代码,X按钮的话,看中间,看最后几句代码

按钮弹出窗口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);

$(".fr-core-panel-header.fr-core-panel-style-blue.fr-core-window-header").css('background','#159D73');//窗体背景颜色

$(".fr-core-window-header").css("display", "none");//隐藏窗口标题栏

  • 2关注人数
  • 567浏览人数
  • 最后回答于:2021-10-29 09:21
    请选择关闭问题的原因
    确定 取消
    返回顶部