Crow Canyon Software Forum

Forum Navigation
Please or Register to create posts and topics.

Display Total Records within a Print Manager List Print Template

In the Print Manager List Print Template Configuration, within the Header section,

  • Is there a way to add a CSS statement that auto totals the number of records in the report? (see attached sample)

V/r,

Uploaded files:
  • Total-Records-in-Print-Manager-Lists.png

Hi,

Please find the steps to get total items count for List Print in header from below.

Step 1: Go to Print Manager -> edit the list print -> navigate to Header section -> add below script in source code (see screenshot below).

<div id="CCSTotalItems"></div>

Step 2: Go to Advanced section -> click on JavaScript Code -> set the custom script as shown below and save the settings (see screenshot below).

$("#CCSTotalItems").text("Total Items: " + objData.ListItems.get_count());
functionCallback();

Uploaded files:
  • List-Print-Custom-Script.jpg
  • List-Print-Custom-Script-2.jpg
  • List-Print-Output.jpg

Outstanding. Thank you!