Created
June 23, 2016 15:10
bootstrap-table step
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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