Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/06/17 11:10:53 (7 years ago)
Author:
jkarder
Message:

#2743: worked on web app

  • added sorting functionality to some tables
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/groups/details/groupDetails.cshtml

    r12780 r14828  
    173173                </div>
    174174                <div class="panel-body">
    175                     <table class="table table-hover table-condensed">
     175                    <table class="table table-hover table-condensed" ts-wrapper>
    176176                        <thead>
    177177                            <tr>
    178178                                <th>#</th>
    179                                 <th>Client Name</th>
    180                                 <th>Cores</th>
    181                                 <th>Cpu Utilization</th>
    182                                 <th>Memory</th>
    183                                 <th>State</th>
     179                                <th ts-criteria="Name">Client Name</th>
     180                                <th ts-criteria="UsedCores">Cores</th>
     181                                <th ts-criteria="CpuUtilization">Cpu Utilization</th>
     182                                <th ts-criteria="UsedMemory">Memory</th>
     183                                <th ts-criteria="State">State</th>
    184184                                <th></th>
    185185                            </tr>
    186186                        </thead>
    187                         <tr ng-repeat="client in clientPage.Clients">
     187                        <tr ng-repeat="client in clientPage.Clients" ts-repeat>
    188188                            <td>{{($index + 1)+((curClientsPage-1)*(clientsPageSize))}}</td>
    189189                            <td>{{client.Name}}</td>
Note: See TracChangeset for help on using the changeset viewer.