Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <div class="row">
  2. <div class="{{$ctrl.tabColClass}}" >
  3. <div tasty-table="" bind-resource="$ctrl.tabResource" bind-theme="$ctrl.tabTemplate" bind-filters="$ctrl.tabFilters">
  4. <table class="table table-striped table-condensed bdf-table" id="{{$ctrl.tabId}}">
  5. <thead tasty-thead=""></thead>
  6. <tbody ng-transclude=""></tbody>
  7. </table>
  8. <div tasty-pagination="" bind-template-url="$ctrl.pagination[0]"></div>
  9. </div>
  10. </div>
  11. </div>
  12.  
  13. <table-global tab-col-class="col-md-12" " tab-id="test" tab-resource="$ctrl.resource" tab-template="$ctrl.template" tab-title="Liste des UA" tab-filters="$ctrl.filters" tab-filters-show="true">
  14. <tbody>
  15. <tr ng-repeat="row in rows">
  16. <td aria-label="doc">
  17. <span>{{ row.doc }}</span>
  18. </td>
  19. <td aria-label="test">
  20. <ul ng-repeat="t in row.test" class="bdf-list-tableau">
  21. <li class="bdf-list-tableau__item">{{ t.name }}t</li>
  22. </ul>
  23. </td>
  24. </tr>
  25. </tbody>
  26.  
  27. <span class="ng-binding ng-scope">
  28.  
  29.  
  30. </span>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement