Bootstrap Table

by jimkennelly

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="table2"
       data-url=   data-click-to-select="true">
    <thead>
    <tr>
        <th data-field="state" data-checkbox="true"></th>
        <th data-field="name">Name</th>
        <th data-field="stargazers_count">Stars</th>
        <th data-field="forks_count">Forks</th>
        <th data-field="description">Description</th>
    </tr>
    </thead>
</table>

JavaScript

$("#table2").bootstrapTable({
url:"/gh/get/response.json/wenzhixin/bootstrap-table/tree/master/docs/data/data1/",
onLoadSuccess: checkAllBoxes,

})
function checkAllBoxes(){
$("#table2").bootstrapTable('checkAll');

}