Updated June 5, 2006
Iron Speed Designer V3.2 and V4.0
You can easily display the total number of records in a table panel on a Show Table page. Here are the steps to modify the default pagination control to display the total number of items on all of the Show Table pages:
Step 1: Using the Application Explorer, expand the Shared folder and select Pagination.ascx file.
Step 2: Select the HTML tab and add the following lines near the end:
<td class="pagination_label">
Total Records: <GEN:PagingControl Name="TotalItems" Type="TotalItems" />
</td>
just before the following two lines:
</tr>
</table>
Save these changes.
Step 3: Switch to the Design tab and Select Tools, Page Properties to display the Page Properties dialog.
Step 4: Navigate to the Total Items node in the tree. On the Display Tab, select Pagination Type as Total Items. Leave the Pagination Button dropdown blank.
Press OK to save the changes and press the Save button on the toolbar.
Step 5: Rebuild (Build, Rebuild All) and run your application. This change requires Rebuild All; otherwise you will not see any changes.
Part V: Customizing Generated Application Code