Skip to content

Instantly share code, notes, and snippets.

@kuneo
Created June 23, 2016 15: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 kuneo/b4d938389c05810c96620c8f9b1dcafc to your computer and use it in GitHub Desktop.
Save kuneo/b4d938389c05810c96620c8f9b1dcafc to your computer and use it in GitHub Desktop.
bootstrap-table step
<table id="table"></table>
<script>
$('#table').bootstrapTable({
url: 'http://kuneo.org/sandbox/bootstrap-table/json/getstart.json',
columns: [{
field: 'id',
title: 'ID'
}, {
field: 'name',
title: '名前'
}, {
field: 'price',
title: '価格'
}]
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment