I've just begun using StringTemplate (from stringTemplate.org) and I'd like to know how to achieve grouping in the results.
e.g.
Month , ID
__________________
Jan ,1
Jan ,2
Feb ,3
Feb ,4
Feb ,5
Mar ,6
Mar ,7
Mar ,8
Mar ,9
so that the results when grouped by month look something like:
Jan:
1
2
Feb:
3
4
5
Mar:
6
7
8
9