按钮控件设置跳转事件,想在当前窗口进行跳转,而不是跳转到一个新的页面,
应该怎样实现呢?试了用以下方法,在设计器中预览是可以的,但是挂载出去就不行了。
window.open("https://www.baidu.com","_self")
FS决策系统-https://help.fanruan.com/finereport/doc-view-606.html
平台内打开标签页插件-https://help.fanruan.com/finereport/doc-view-2415.html
https://help.fanruan.com/finereport/doc-view-3633.html
FR.doHyperlinkByGet({ //报表路径 "url":"/webroot/decision/view/report?viewlet=%252FGettingStarted.cpt", //参数 "para":{ "__pi__":true, //是否显示参数面板 "地区":"华北" }, "target":"_dialog", //_dialog对话框方式打开 self当前页打开 "feature":{ "width":600, "height":400, "isCenter":true, //是否居中显示 "title":"标题" } })
你的window.open()加一个参数试试,报表地址改下
window.open("URL","_self")
测试可用
window.open ('${servletURL}?reportlet=2.cpt','_self')