隐藏弹窗的关闭图标

image.png

FineReport x82905301 发布于 2019-3-25 14:26
1min目标场景问卷 立即参与
回答问题
悬赏:5 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
3
congerLv6高级互助
发布于2022-9-10 11:59(编辑于 2022-9-10 12:00)

参考模板

删除对话框关闭图标.zip

参考JS

//移除原有的点击事件

$('td[id*=A1]>span').removeAttr('onclick')

$('td[id*=A1]>span').click(function () {

  //一、显示对话框

  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)

  $('.fr-core-panel-tool-close').remove()

})

//移除原有的点击事件

$('td[id*=B1]>span').removeAttr('onclick')

$('td[id*=B1]>span').click(function () {

  //一、显示对话框

  FR.doHyperlink(event || window.event, [{

    "data": "var as=arguments; return FR.tc(function(){FR.doHyperlinkByGet({\"url\":\"https://bbs.fanruan.com/wenda/question/6528.html\",\"para\":{},\"target\":\"_dialog\",\"feature\":\"width=600,height=400,\",\"title\":\"网页链接1\"})}, this, as)",

    "name": "网页链接1"

  }], true)

  $('.fr-core-panel-tool-close').remove()

})

$('td[id*=C1]>span').removeAttr('onclick')

$('td[id*=C1]>span').click(function () {

  //一、显示对话框

  FR.doHyperlink(event || window.event, [{

    "data": "var as=arguments; return FR.tc(function(){;return eval(\"(function(){try{var iframe = $(\\\"\\\");\\n// 对话框内 iframe 参数的命名,默认宽高占比是 100%,可向下滚动\\niframe.attr(\\\"src\\\", \\\"https://bbs.fanruan.com/wenda/question/6528.html\\\");\\n// 给 iframe 添加 src 属性\\nvar o = {\\nwidth : 300,//对话框宽度  \\nheight: 300//对话框高度\\n};\\nFR.showDialog(\\\"JS网页框\\\", o.width, o.height, iframe,o);//弹出对话框\\n\\n\\n}catch(ex){FR.Logger.error(ex);FR.Msg.toast(FR.i18nText('Custom')+'JS'+FR.i18nText('Error')+' : '+ex.message);}}).createDelegate(this, [], 0).apply(this, arguments)\");}, this, as)",

    "name": "JavaScript脚本1"

  }], true)

  $('.fr-core-panel-tool-close').remove()

})

最佳回答
0
胡歌Lv7中级互助
发布于2021-9-7 16:58(编辑于 2021-9-7 17:23)

1631006537(1).jpg

WorkBook1.cpt

参考我的做法

  • guoyongpeng guoyongpeng 这个需要些css文件然后添加进去对吗
    2021-09-07 17:11 
  • 胡歌 胡歌 回复 guoyongpeng 你的弹窗是通过超链接形式还是怎么做的?
    2021-09-07 17:15 
  • guoyongpeng guoyongpeng 回复 胡歌 超链接
    2021-09-07 17:16 
  • 4关注人数
  • 904浏览人数
  • 最后回答于:2022-9-10 12:00
    请选择关闭问题的原因
    确定 取消
    返回顶部