Get started with datatables.net-rowreorder-bs5 CDN
MIT licensed
Datatables.net-rowreorder-bs5 is a plugin that enables sortable and reorderable tables using Bootstrap 5.
Tags:- row reordering
- DataTables
- jQuery
- table
- Bootstrap 5
Stable version
Copied!
How to start using datatables.net-rowreorder-bs5 CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with datatables.net-rowreorder-bs5 CDN - cdnhub.io</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.5/css/dataTables.bootstrap5.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net-rowreorder-bs5/1.5.0/rowReorder.bootstrap5.min.css">
</head>
<body>
<div class="container mt-5">
<table id="example" class="table table-bordered table-striped">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
<th>Action</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
<th>Action</th>
</tr>
</tfoot>
<tbody id="example-data">
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>54</td>
<td>2011/04/25</td>
<td>$320,800</td>
<td><button class="btn btn-warning btn-sm">Edit</button></td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>63</td>
<td>2011/07/25</td>
<td>$170,750</td>
<td><button class="btn btn-warning btn-sm">Edit</button></td>
</tr>
<tr>
<td>Ashton Cox</td>
<td>Junior Technical Author</td>
<td>San Francisco</td>
<td>66</td>
<td>2009/01/12</td>
<td>$86,000</td>
<td><button class="btn btn-warning btn-sm">Edit</button></td>
</tr>
<tr>
<td>Cedric Kelly</td>
<td>Senior Javascript Developer</td>
<td>Edinburgh</td>
<td>22</td>
<td>2012/03/29</td>
<td>$433,060</td>
<td><button class="btn btn-warning btn-sm">Edit</button></td>
</tr>
</tbody>
</table>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<script src="https://cdn.datatables.net/1.11.5/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net-rowreorder-bs5/1.5.0/dataTables.rowReorder.js"></script>
<script src="https://cdn.datatables.net-rowreorder-bs5/1.5.0/rowReorder.bootstrap5.min.js"></script>
<script>
$(document).ready(function() {
$('#example').DataTable({
rowReorder: true,
language: {
url: '//cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/English.json'
}
});
});
</script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!