我网上抄的
FR.showIframeDialog({
url:"ReportServer?reportlet=C:/FineReport_10.0/webapps/webroot/WEB-INF/reportlets/HR_info.cpt&op=write",//op=write开启填报预览
title:"title",//设置左上角蓝色框的标题
width:500,
height:600
});
实际会报404的错误
有知道怎么解决的吗?
已经解决了,换成了这种
var iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='yes' framedorder='0'>");
// 对话框内 iframe 参数的命名,默认宽高占比是 100%,可向下滚动
iframe.attr("src", cc+"?reportlet=HR_info.cpt&op=write");
// 给 iframe 添加 src 属性
var o = {
width : 700,//对话框宽度
height: 500//对话框高度
};
FR.showDialog("添加", o.width, o.height, iframe,o);//弹出对话框
url:"${servletURL}?reportlet=HR_info.cpt&op=write"
https://help.fanruan.com/finereport/doc-view-2511.html?source=4
url:"/webroot/decision/view/report?viewlet=HR_info.cpt&op=write",//op=write开启填报预览
这个得换成你浏览器访问链接的