<tbody>
<tr th:each="StaplesOrderSummary :${StaplesOrderSummaryList}">---list getting from controller
<td th:text="*{#dates.format(StaplesOrderSummary.orderDate.time, 'MM-DD-YYYY')}"></td>
<td><a th:href="@{'/account/orders/'+ *{StaplesOrderSummary.orderNo}}" title="view order" class="actLnk" th:text="*{StaplesOrderSummary.orderNo}"></a></td>
<td th:text="*{StaplesOrderSummary.type}">Online</td>
<td class="isPriceCell"><span blc:price="*{StaplesOrderSummary.amount}"></span></td>
<td th:text="*{StaplesOrderSummary.status}"></td>
<td class="isButtonCell"><a th:href="@{'ezroh/' + *{StaplesOrderSummary.orderNo}}" class="button single">Reorder Items</a></td>
</tr>
</tbody>
its pages with list or rows
how to sort the list based on date?