If I go to any entity page in the table when I click on the header the sorting happens as shown in the screenshot.
How to implement similar sorting on custom page using tpl which is stored in client/custom/res/templates/detail/tableDetail.tpl.
How to implement similar sorting on custom page using tpl which is stored in client/custom/res/templates/detail/tableDetail.tpl.
HTML Code:
<table class="table table-striped table-bordered"> <thead> <tr> <td class="text-bold">key</td> <td class="text-bold">count</td> <td class="text-bold">price</td> </tr> </thead> <tbody> {{#each result}} <tr> <td>{{key}}</td> <td>{{count}}</td> <td>{{price}}</td> </tr> {{/each}} </tbody> </table>
Comment