我有一个与可视化.js 中的分页有关的问题
我有一个使用 iframe 呈现的报告,顶部工具栏带有分页和导出选项(请参阅 jasper_iframe.png),示例代码如下
<div class="its-preloader-reports">
<iframe src="http://localhost:8080/jasperserver-pro/flow.html?_flowId=viewReportFlow&reportUnit=/public/Exchange/reports/Report1&decorate=no&enterpriseId=11&startTime=28/05/2015%2000:00:00&endTime=28/05/2015%2023:59:00&name=itmsadmin%20quwic&report_type=3" height="867px" width="960px"> </iframe>
当我将此报告转换为 Visualize.js 时,相同的报告顶部工具栏消失了(请参阅 jasper_visualize.png),示例代码如下
visualize({
server: "http://localhost:8080/",
auth: {
name: "superuser",
password: "superuser"
}
},function (v) {
v("#container").report({
resource: "/public/Exchange/reports/Report1",
params: {
"enterpriseId": ["21"],
"startTime": ["01/04/2015 00:00:00"],
"endTime": ["03/04/2015 23:59:00"],
"name": ["itmsadmin quwic"],
"report_type=3": ["3"]
},
error: handleError
});
function handleError(err) {
console.log('error:'+err.message);
}
});
我的问题是 Visualize.js 是否有对这个工具栏的原生支持,或者我们必须自己实现它?任何解释将不胜感激