Quick start
Looking to quickly add Bootstrap Table to your Materialize project? Use CDN, provided for free by the folks at UNPKG. Using a package manager or need to download the source files? Head to the downloads page.
CSS
Copy-paste the stylesheet <link>
into your <head>
before all other stylesheets to load our CSS.
<link rel="stylesheet" href="https://unpkg.com/bootstrap-table@1.21.4/dist/themes/materialize/bootstrap-table-materialize.min.css">
JS
Place the following <script>
s near the end of your pages, right before the closing </body>
tag, to enable them. jQuery must come first, then our JavaScript plugins.
<script src="https://unpkg.com/bootstrap-table@1.21.4/dist/bootstrap-table.min.js"></script>
<script src="https://unpkg.com/bootstrap-table@1.21.4/dist/themes/materialize/bootstrap-table-materialize.min.js"></script>
Starter template
Be sure to have your pages set up with the latest design and development standards. That means using an HTML5 doctype and including a viewport meta tag for proper responsive behaviors.
For Materialize, we use Material Design Icons as the default icons, so need to import Material Icons link.
Put it all together and your pages should look like this:
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/materialize-css@1.0.0/dist/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/bootstrap-table@1.21.4/dist/themes/materialize/bootstrap-table-materialize.min.css">
<title>Hello, Bootstrap Table!</title>
</head>
<body>
<table data-toggle="table">
<thead>
<tr>
<th>Item ID</th>
<th>Item Name</th>
<th>Item Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Item 1</td>
<td>$1</td>
</tr>
<tr>
<td>2</td>
<td>Item 2</td>
<td>$2</td>
</tr>
</tbody>
</table>
<script src="https://unpkg.com/jquery@3.7.0/dist/jquery.js"></script>
<script src="https://cdn.jsdelivr.net/npm/materialize-css@1.0.0/dist/js/materialize.min.js"></script>
<script src="https://unpkg.com/bootstrap-table@1.21.4/dist/bootstrap-table.min.js"></script>
<script src="https://unpkg.com/bootstrap-table@1.21.4/dist/themes/materialize/bootstrap-table-materialize.min.js"></script>
</body>
</html>
HTML5 doctype
Bootstrap Table requires the use of the HTML5 doctype. Without it, you’ll see some funky incomplete styling, but including it shouldn’t cause any considerable hiccups.
<!doctype html>
<html lang="en">
...
</html>
Community
Stay up to date on the development of Bootstrap Table and reach out to the community with these helpful resources.
- Follow @wenzhixin2010 on Twitter.
- Read The Official Bootstrap Table News.
- Implementation help may be found at Stack Overflow (tagged
bootstrap-table
).