Sortable table columns with AngularJs
问题 I'm trying to sort a table of data which is populated from a JSON source. The code I have is as follows: HTML: <div ng-app="myApp"> <div ng-controller="PurchasesCtrl"> <table cellspacing="0"> <tr class="first"> <th class="first" ng:click="changeSorting(purchases.date)">Date</th> <th ng:click="changeSorting(purchases.text)">Description</th> <th ng:click="changeSorting(purchases.price)">Amount</th> <th ng:click="changeSorting(purchases.availability)">Status</th> </tr> <tr ng-repeat="purchase in