主界面使用js打开对话框:类似这样的
FR.doHyperlinkByPost({
//报表路径
"url":"/webroot/decision/view/report?viewlet=WorkBook2.cpt&op=write",
//参数
"para":{
},
"target":"_dialog", //对话框方式打开
"feature":{
"width":700,
"height":500,
"title":""
}
})
对话框内打开对话框:目前测试出来的效果是覆盖掉“主界面打开的对话框”
window.parent.FR.doHyperlinkByPost({
//报表路径
"url":"/webroot/decision/view/report?viewlet=WorkBook3.cpt&op=write",
//参数
"para":{
},
"target":"_dialog", //对话框方式打开
"feature":{
"width":700,
"height":900,
"title":""
}
})