In-Table List with Filtering Grouping and Ordering in HTML Document
Leave feedback
NoteIn this article, we will use GroupDocs.Assembly to generate In-TableList with Filtering, Grouping, and Ordering report in HTML Document format.
NoteThe code uses some of the objects defined in The Business Layer.
As a report developer, you are required to represent managers’ contract information with the following key requirements:
- Report must show each manager along with sum of prices of his contracts.
- It must represent all the information in tabular form.
- Report must be generated in the HTML Document.
<<foreach \[in getContracts() .where(c => c.getDate().getYear() + 1900 == 2015) .groupBy(c => c.getManager()) .orderBy(g => g.key.getName())\]>> <</foreach>> | |
Manager | Contract Price |
<<[key.getName()]>> | <<[sum(c => c.getPrice())]>> |
Please download the sample template we created in this article:
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.