Free cookie consent management tool by TermsFeed Policy Generator

Changeset 14828


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
Location:
trunk/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp
Files:
2 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>
  • trunk/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/users/details/userDetails.cshtml

    r12584 r14828  
    6868                </div>
    6969                <div class="panel-body">
    70                     <table class="table table-hover table-condensed">
     70                    <table class="table table-hover table-condensed" ts-wrapper>
    7171                        <thead>
    7272                            <tr>
    7373                                <th>#</th>
    74                                 <th>Job Name</th>
    75                                 <th>Date Created</th>
     74                                <th ts-criteria="Name">Job Name</th>
     75                                <th ts-criteria="DateCreated">Date Created</th>
    7676                                <th>Progress</th>
    7777                                <th></th>
    7878                            </tr>
    7979                        </thead>
    80                         <tr ng-repeat="job in jobs">
     80                        <tr ng-repeat="job in jobs" ts-repeat>
    8181                            <td>{{$index + 1}}</td>
    8282                            <td>{{job.Name}}</td>
     
    105105                </div>
    106106                <div class="panel-body">
    107                     <table class="table table-hover table-condensed">
     107                    <table class="table table-hover table-condensed" ts-wrapper>
    108108                        <thead>
    109109                            <tr>
    110110                                <th>#</th>
    111                                 <th>Job Name</th>
    112                                 <th>Date Created</th>
    113                                 <th>Date Completed</th>
    114                                 <th>Tasks</th>
     111                                <th ts-criteria="Name">Job Name</th>
     112                                <th ts-criteria="DateCreated">Date Created</th>
     113                                <th ts-criteria="DateCompleted">Date Completed</th>
     114                                <th ts-criteria="TotalTasks">Tasks</th>
    115115                                <th></th>
    116116                            </tr>
    117117                        </thead>
    118                         <tr ng-repeat="job in completedJobPage.Jobs">
     118                        <tr ng-repeat="job in completedJobPage.Jobs" ts-repeat>
    119119                            <td>{{($index + 1)+((completedJobCurPage-1)*(completedJobPageSize))}}</td>
    120120                            <td>{{job.Name}}</td>
Note: See TracChangeset for help on using the changeset viewer.