还有没有相关视频的链接呀,几个月前看了改变对话框样式的视频,现在翻了一遍讲堂没找到

image.png

FineReport sasaxi 发布于 2020-12-29 14:46
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
0
snrtuemcLv8专家互助
发布于2020-12-29 14:48
按钮弹出窗口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-title").eq(0).css({"color":"red","font-family":"microsoft yahei","font-size":"14px"})  //窗体标题颜色大小
$(".fr-core-window.ui-state-enabled").css("border-radius","0").children().css("border-radius","0"); //标题边框圆角改直角


  • 用户H9041287 用户H9041287 请问这段代码的弹窗如何替换指定的决策报表呀?
    2021-03-19 01:19 
  • 2关注人数
  • 202浏览人数
  • 最后回答于:2020-12-29 14:48
    请选择关闭问题的原因
    确定 取消
    返回顶部