Oracle Apex报告 - 在打印时添加页码

时间:2016-08-12 06:57:29

标签: oracle report oracle-apex

我有一个按钮,它会打开一个打印出Oracle APEX经典报告的window.print(),我只是想知道在打印时是否有任何方法可以添加页码?

我将以下CSS代码添加到该区域的html标题部分,这似乎无法正常工作。

<style media="print" type="text/css">
div#pageFooter:after  
{
 counter-increment: page;  
 content: "Page " counter(page) " of " counter(pages);
}  
</style>

它打印出来&#34; Page 1 of 0&#34;只在第一页上。

0 个答案:

没有答案