콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
3495 화면

     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.

아바타
취소
작성자

Inside

베스트 답변

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

 

아바타
취소
베스트 답변

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

아바타
취소