<div class="datatable"> <rd-widget> <rd-widget-body classes="no-padding"> <div class="toolBar"> <div class="toolBarTitle vertical-center"> <pr-icon icon="$ctrl.titleIcon"></pr-icon> {{ $ctrl.titleText }} </div> <div class="searchBar vertical-center"> <pr-icon icon="'search'" class-name="'icon'"></pr-icon> <input type="text" class="searchInput" ng-model="$ctrl.state.textFilter" placeholder="Search..." auto-focus ng-model-options="{ debounce: 300 }" /> </div> <div class="actionBar"> <button type="button" class="btn btn-sm btn-danger" ng-disabled="$ctrl.state.selectedItemCount === 0" ng-click="$ctrl.removeAction($ctrl.state.selectedItems)"> <pr-icon icon="'trash-2'"></pr-icon>Remove </button> <button type="button" class="btn btn-sm btn-primary" ui-sref="edge.jobs.new"> <pr-icon icon="'plus'"></pr-icon>Add Edge job </button> </div> </div> <div class="table-responsive"> <table class="table-hover nowrap-cells table"> <thead> <tr> <th> <div class="vertical-center"> <span class="md-checkbox"> <input id="select_all" type="checkbox" ng-model="$ctrl.state.selectAll" ng-change="$ctrl.selectAll()" /> <label for="select_all"></label> </span> <table-column-header col-title="'Name'" can-sort="true" is-sorted="$ctrl.state.orderBy === 'Name'" is-sorted-desc="$ctrl.state.orderBy === 'Name' && $ctrl.state.reverseOrder" ng-click="$ctrl.changeOrderBy('Name')" ></table-column-header> </div> </th> <th> <table-column-header col-title="'CronExpression'" can-sort="true" is-sorted="$ctrl.state.orderBy === 'CronExpression'" is-sorted-desc="$ctrl.state.orderBy === 'CronExpression' && $ctrl.state.reverseOrder" ng-click="$ctrl.changeOrderBy('CronExpression')" ></table-column-header> </th> <th> <table-column-header col-title="'Created'" can-sort="true" is-sorted="$ctrl.state.orderBy === 'Created'" is-sorted-desc="$ctrl.state.orderBy === 'Created' && $ctrl.state.reverseOrder" ng-click="$ctrl.changeOrderBy('Created')" ></table-column-header> </th> </tr> </thead> <tbody> <tr dir-paginate="item in ($ctrl.state.filteredDataSet = ($ctrl.dataset | filter:$ctrl.state.textFilter | orderBy:$ctrl.state.orderBy:$ctrl.state.reverseOrder | itemsPerPage: $ctrl.state.paginatedItemLimit))" ng-class="{ active: item.Checked }" > <td> <span class="md-checkbox"> <input id="select_{{ $index }}" type="checkbox" ng-model="item.Checked" ng-click="$ctrl.selectItem(item, $event)" /> <label for="select_{{ $index }}"></label> </span> <a ui-sref="edge.jobs.job({id: item.Id})">{{ item.Name }}</a> </td> <td> {{ item.CronExpression }} </td> <td>{{ item.Created | getisodatefromtimestamp }}</td> </tr> <tr ng-if="!$ctrl.dataset"> <td colspan="3" class="text-muted text-center">Loading...</td> </tr> <tr ng-if="$ctrl.state.filteredDataSet.length === 0"> <td colspan="3" class="text-muted text-center">No Edge job available.</td> </tr> </tbody> </table> </div> <div class="footer" ng-if="$ctrl.dataset"> <div class="infoBar" ng-if="$ctrl.state.selectedItemCount !== 0"> {{ $ctrl.state.selectedItemCount }} item(s) selected </div> <div class="paginationControls"> <form class="form-inline"> <span class="limitSelector"> <span class="mr-1"> Items per page </span> <select class="form-control" ng-model="$ctrl.state.paginatedItemLimit" ng-change="$ctrl.changePaginationLimit()" data-cy="component-paginationSelect"> <option value="0">All</option> <option value="10">10</option> <option value="25">25</option> <option value="50">50</option> <option value="100">100</option> </select> </span> <dir-pagination-controls max-size="5"></dir-pagination-controls> </form> </div> </div> </rd-widget-body> </rd-widget> </div>