我在 WebSphere Application Srever 8 上使用 Primefaces 3.4 和 Apache MyFaces 2.1.8。
我有一些图表。现在我想让图表保存为图像成为可能。PF 带有图表的导出功能。
在 PF 展示中,他们在新对话框中导出图像: 看这里
当我按下按钮时,我想获得典型的“另存为”对话框。
有人可以给我一个提示如何为此编写javascript吗?
是这样的:
<script type="text/javascript">
//
function exportChart() {
//export image
$('#chart').exportAsImage();
}
//
</script>
此致