<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>
            </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>
            </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>
            <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>