Results 1 to 2 of 2

Thread: develop web report: display Current page and Total pages

  1. #1
    Join Date
    Nov 2009
    Posts
    1

    develop web report: display Current page and Total pages

    When you develop web report with RAQ Report, if it confronts with mass data list, then the problems like operational speed slow down, memory overflow, system halted may appear while reading, displaying and exporting reports.
    So RAQ Report provides the extHtml tag for page calculation. This tag has extended the function of the original html tag, implemented reading, displaying and exporting in pages, decreased memory demand, improved operational efficiency and avoided the memory overflow problem.
    Then, how to display current page and total pages in the cell using the Page tag?
    There are two methods to finish this work:
    1. Suppose the default cache page number of the Page tag is 100, assign the property in the Page tag with 1: cachePageNum=“1”, then use the expression =beginRow/10+1 in the cell to display current page number, use =totalCount/20 to display total pages. If the value of cachePageNum is not changed to 1, it will always display 1 as current page number, for report will consider it has cached 100 pages, when you click Next, although calculation is proceeded in the background, the value of beginRow won’t change anymore.
    2. We can set the data type of a cell in the report as html, and input the following js code in corresponding content:
    <script>
    document.write(report1_getCurrPage());
    </script>
    At this time, when we click Next, the displayed number is the current page number.
    For total pages, we can you the expression: =floor(query(‘SELECT count(*) FROM OrderDetail’)/20,0)+1

  2. #2
    Join Date
    May 2009
    Posts
    637

    Re: develop web report: display Current page and Total pages

    It depends on you will be using the report, you can do as I said before, a User's Manual, which explains how everything works, the sections, the overall site map. Also can make one in which you describe the page in design and technical terms that you use styles, types of images, that things are allowed to do with the design and what not plus the style of a Corporate Image Manual for your site. You cant try Google Analytics. It offers many of our web statistics and user behavior on it. But not only shows the data but they interrelated so that we can extract useful reports.

Similar Threads

  1. Cash Flow Report Total Cost Does Not Match Gantt Total Cost?
    By kaorisdad in forum Microsoft Project
    Replies: 5
    Last Post: 26-08-2011, 06:50 AM
  2. My current home page doesn't display on desktop
    By matbiec in forum Window 2000 Help
    Replies: 2
    Last Post: 29-12-2010, 12:40 AM
  3. Want to develop an application with hide css display property
    By Bantu in forum Software Development
    Replies: 3
    Last Post: 04-08-2009, 01:14 PM
  4. Is it possible to get the current URL in my JSP page
    By Sean J in forum Software Development
    Replies: 3
    Last Post: 19-05-2009, 09:27 PM
  5. Vb Script to Display and reset Page No. in Excel Report
    By kinrarateoh in forum Software Development
    Replies: 3
    Last Post: 27-04-2009, 02:39 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,750,312,969.33580 seconds with 16 queries