Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pkguid.html 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <div layout="column" layout-fill layout-align="top">
  2. <div flex>
  3. <md-toolbar class="md-table-toolbar md-default">
  4. <div class="md-toolbar-tools">
  5. <span>PkGuids</span>
  6. </div>
  7. </md-toolbar>
  8. </div>
  9. <div flex>
  10. <div class="isa_error" ng-show="pkGuidsError != null">
  11. <i class="fa fa-times-circle"></i>
  12. {{ pkGuidsError.data.message }}
  13. </div>
  14. <md-table-container>
  15. <table md-table md-row-select multiple ng-model="selected" md-progress="promise">
  16. <thead md-head md-order="query.order" md-on-reorder="getPkGuids">
  17. <tr md-row>
  18. <th md-column md-order-by="id"><span>Id</span></th>
  19. <th md-column md-order-by="someText"><span>Some Text</span></th>
  20. <th md-column md-order-by="someInt" md-numeric>Some Int</th>
  21. <th md-column md-order-by="createdAt">Created At</th>
  22. </tr>
  23. </thead>
  24. <tbody md-body>
  25. <tr md-row md-select="item" md-select-id="id" md-auto-select ng-repeat="item in pkGuids.data">
  26. <td md-cell>{{item.id}}</td>
  27. <td md-cell>{{item.someText}}</td>
  28. <td md-cell>{{item.someInt}}</td>
  29. <td md-cell>{{item.createdAt}}</td>
  30. </tr>
  31. </tbody>
  32. </table>
  33. </md-table-container>
  34. </div>
  35. <md-table-pagination class="col-xs-11" md-limit="query.limit" md-limit-options="[1, 5, 10, 15]" md-page="query.page" md-total="{{pkGuids.count}}" md-on-paginate="getPkGuids" md-page-select></md-table-pagination>
  36. </div>