データを降順、つまり27,26,25でソートしたいのですがどうすればいいですか?Angularjsでdatetime ng-repeatを降順で並べ替える方法は?
<tbody class="gradeX" ng-repeat="x in Profile | orderBy: x.created_datetime">
<tr>
<td>{{x.job_title }}</td>
<td>{{x.created_datetime | date:'medium' }}</td>
<td>{{x.updated_datetime | date:'medium' }}</td>
<td>{{x.status}}</td>
<td>{{ x.total }}</td>
<td class="actions"> <a href="" data-toggle="tooltip" title="Show Invoice Details" ng-click="activeinvoicesCtrl.setCurrentJob(x)"><i class="fa fa-server fa-2x" aria-hidden="true"></i></a> </td>
</tr>
</tbody>
英語のように、文字列をCONCATし、コード – Mikkel