怎么修改超链接对话框标题栏的颜色

image.png

image.png

FineReport yzm574265 发布于 2022-1-20 15:02
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共4回答
最佳回答
0
yazhouLv6初级互助
发布于2022-1-20 15:20

$('head').append($('<style type = "text/css">.fr-core-window-header.fr-core-panel-style-blue{background: #204F91;}.fr-core-panel-body-border{border: none}</style>'));

image.png

最佳回答
0
linbodingLv6中级互助
发布于2022-1-20 15:06(编辑于 2022-1-20 15:07)

修改超链接-对话框标题栏的背景色

------------------------

https://help.finereport.com/finereport9.0/doc-view-2270.html

最佳回答
0
snrtuemcLv8专家互助
发布于2022-1-20 15:07

如果是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');//窗体背景颜色

最佳回答
0
Z4u3z1Lv6专家互助
发布于2022-1-20 15:07

JS后面加:

$(".fr-core-panel-title").eq(0).css({

"color": "red",

"background":"red",

"font-family": "microsoft yahei",

"font-size": "14px",

"text-align": "center"

}); //窗体标题颜色大小居中

  • 4关注人数
  • 674浏览人数
  • 最后回答于:2022-1-20 15:20
    请选择关闭问题的原因
    确定 取消
    返回顶部