Displaying the Total Number of Result Records in a List View

ListView widget configuration to display the number of result records in a search result list view.

You can configure the ListView widget to display the number of result records in a search result list view. This header usually contains the text Results followed by a count of the number of records available in the search result. It also contains the list browser buttons and allows users to navigate within the result list.

For example, the screenshot above shows the start page with a custom form to display the Search results for company records. The results header shows . By default it shows the number of records remaining in the N+ format .

If you wish to show the total number of records available in the search result, you have to set the countRows parameter in the ListView widget to true. The following sample start page form configured in the Designer produces the result as shown in the screenshot above:
"listView9": {
      "type": "ListView",
      "options": {
        "model": { "fieldControlType": "List", "fieldGroupName": "FI", "fixedFilterName": "", 
        "pageSize": 5, "infoAreaId": "FI" },
        "autoLoad": true,
        "showPaging": true,
        "countRows": true
      },