Bootstrap Table

by Phil

HTML

<link rel="stylesheet" href="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.css">
<script src="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.js"></script>
<table id="table">
  <thead>
    <tr>
      <th data-field="name">Name</th>
    </tr>
  </thead>
</table>

<button id="refresh">
  Refresh
</button>

JavaScript

var data = [];

var loadingData = true;

$(function() {

  $('#table').bootstrapTable({
    data: data,
    formatNoMatches: function() {
      return "No Data"
    },
  });

  $("#refresh").click(function() {
    $('#table').bootstrapTable("refresh", {
      data: data
    })
  });
});