<div id="collapseThree-2" class="panel-collapse collapsexpanded="false">
<table class="table table-hover hd-bg table-bordered;sortable">
<thead align="center">
<tr>
<th>Request ID</th>
<th>Request Type</th>
<th>Initiator</th>
<th>Product</th>
<th>Version</th>
<th>Submission Date</th>
<th>Stage</th>
<tr>
<tbody ng-repeat = "x in requestData">
<td ng-bind = "x.id"></td>
<td ng-bind = "x.type_of_request"></td>
<td ng-bind = "x.initiator_name"></td>
<td ng-bind = "x.product_name"></td>
<td ng-bind = "x.product_version"></td>
<td ng-bind = "x.submission_date"></td>
<td ng-bind = "x.status_flag"></td>
</tbody>
</thead>
</table>
</div>
Here, i am using sottable.js, but still not able to find the sorting options on columns.As, i am using sorttable.js, so by default it needs to come up with sorting options on the columns of the table.
You need to bind array of object like this
html Code:-
please find fiddle