SearchCommittee.html 2.34 KB
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<md-dialog aria-label="hello world" flex>
  <md-toolbar>
    <div class="md-toolbar-tools">
      <h2>Search Referree</h2>
      <span flex></span>
      <md-button class="md-icon-button" ng-click="hide()">
        <i class="fa fa-times fa-2x"></i>
      </md-button>
    </div>
  </md-toolbar>
  <md-dialog-content>
    <md-list flex>
      <!-- <md-subheader class="md-no-sticky"><swaplang code="SW011610">Item</swaplang></md-subheader> -->
      <div class='md-dialog-content'>
         <table id="datareferre" class="table table-hover table-bordered" cellspacing="0" width="100%">
          <thead>
            <tr>
              <th><swaplang code="SW000274">Employee ID</swaplang></th>
              <th><swaplang code="SW010885">Name</swaplang></th>
              <th><swaplang code="BU1">bu1</swaplang></th>
              <th><swaplang code="BU2">bu2</swaplang></th>
              <th><swaplang code="BU3">bu3</swaplang></th>
              <th><swaplang code="SW003545">job</swaplang></th>
24
              <th>สถานะการประเมิน</th>
Thitichaipun Wutthisak committed
25 26 27 28 29 30 31 32 33 34
            </tr>
          </thead>
          <tfoot>
            <tr>
              <th><swaplang code="SW000274">Employee ID</swaplang></th>
              <th><swaplang code="SW010885">Name</swaplang></th>
              <th><swaplang code="BU1">bu1</swaplang></th>
              <th><swaplang code="BU2">bu2</swaplang></th>
              <th><swaplang code="BU3">bu3</swaplang></th>
              <th><swaplang code="SW000057">Position</swaplang></th>
35
              <th>สถานะการประเมิน</th>
Thitichaipun Wutthisak committed
36 37 38 39 40 41 42 43 44 45
            </tr>
          </tfoot>
        <tbody>
          <tr ng-repeat='emp in referrelist'>
            <td ng-click='setEmpItem(emp.employeeid)'><a>{{emp.employeeid}}</a></td>
            <td>{{emp.fullname}}</td>
            <td>{{emp.bu1}}</td>
            <td>{{emp.bu2}}</td>
            <td>{{emp.bu3}}</td>
            <td>{{emp.position}}</td>
46 47 48 49
            <td>
<!--              <i ng-if="emp.referee_level == '1'" class="fa fa-check-circle-o"></i>-->
              {{refereeStatus[emp.referee_level]}}
            </td>
Thitichaipun Wutthisak committed
50 51 52 53 54 55 56 57 58
            <td class='hide' ng-if='$last'>{{callDataTable()}}</td> <!--call function DataTable After Load Emplist Data-->
          </tr>
        </tbody>
        </table>
      </div>
      <md-divider ></md-divider>
    </md-list>
  </md-dialog-content>
</md-dialog>