Skip to content

Instantly share code, notes, and snippets.

@bunlongheng
Created January 28, 2016 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bunlongheng/515493d00bb3006af26a to your computer and use it in GitHub Desktop.
Save bunlongheng/515493d00bb3006af26a to your computer and use it in GitHub Desktop.
<table class="table table-bordered mb30" id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Bunlong</td>
</tr>
</tbody>
</table>
@section('pagescripts')
<script type="text/javascript">
$('#example').dataTable({
"bLengthChange": false,
"bInfo" : false,
"bFilter": false,
"bPaginate": false,
"dom": '<"pull-left"f><"pull-right"l>tip'
});
</script>
@stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment