Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
3414 Tampilan

     I want to get the page number as Page X of Y where X is the current page number and Y is the total number of page count. I am getting pagenumber by <pageNumber/> tag but <pageCount/> is not rendering its value. Please acknowledge with solution.

Avatar
Buang
Penulis

Inside

Jawaban Terbai

Only way to use pagecount is to put pagecount part in the beginning of your rml file.. Example:

<?xml version="1.0"?>
<document filename="test.pdf">
  <template pageSize="(842.0,595.0)" title="Report Title here" author="Anankin Skywalker" allowSplitting="20">
    <pageTemplate id="first">
      <frame id="first" x1="0.0" y1="16.0" width="842" height="525"/>
      <pageGraphic>
            <drawString x="23.87cm" y="19.9cm">Page: <pageNumber/>/ of <pageCount/></drawString>
      </pageGraphics>
    </pageTemplate>
  </template>
  <stylesheet>....

You need to do it like this because pageNumber is rendered for each page as the page is rendered, but pageCount is actualy rendered after all pages are rendered because there is no way the program can know how much pages will it take for report... so the actual pageCount value is the last thing that is written to rendered pdf file... 

 

hope this will be of help

 

Avatar
Buang
Jawaban Terbai

Is your pagecount in a para or drawstring? I know there has been some troubles with pagecount in para tags.

Avatar
Buang