Click here to Skip to main content
15,921,622 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

Am working on table dispaly dynamically with rows and columns, with below code,

HTML
<thead>
        <tr>
           
            <th ng-repeat = "key in head.Headers" > {{key.name}} </th>
        </tr>
    </thead>


HTML
<tbody>
    <tr ng-repeat = "head in jsonbody">
       
        <td ng-repeat = "key in head.Values ">
       {{key.Value}}
        </td>
    </tr>
</tbody>


but i want to apply orderBy(sort) on each column ,so plz can any one help me on this.

thanks
karthik
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900