"Sort row table"
Bootstrap 4.1.1 Snippet by letungkiki

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<div class="container">
<div class="row">
<div class="table-responsive col-md-12">
<table id="sort2" class="grid table table-bordered table-sortable">
<thead>
<tr><th>Year</th><th>Title</th><th>Grade</th></tr>
</thead>
<tbody>
<tr>
<td data-id="11">1</td>
<td><input type="text" value="name 1" class="form-control"></td>
<td><input type="text" value="email 1" class="form-control"></td>
<td><button class="btn btn-primary glyphicon glyphicon-remove"></button></td>
</tr>
<tr>
<td data-id="22">2</td>
<td><input type="text" value="name 2" class="form-control"></td>
<td><input type="text" value="email 2" class="form-control"></td>
<td><button class="btn btn-primary glyphicon glyphicon-remove"></button></td>
</tr>
<tr>
<td data-id="33">3</td>
<td><input type="text" value="name 3" class="form-control"></td>
<td><input type="text" value="email 3" class="form-control"></td>
<td><button class="btn btn-primary glyphicon glyphicon-remove"></button></td>
</tr>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
.table-sortable tbody tr {
cursor: move;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$(document).ready(function() {
var fixHelperModified = function(e, tr) {
var $originals = tr.children();
var $helper = tr.clone();
$helper.children().each(function(index) {
$(this).width($originals.eq(index).width())
});
return $helper;
};
var updatee = function() {
$('tbody').find('tr').each(function(k,v) {
console.log($(v)[0].children[0].dataset.id)
});
};
$(".table-sortable tbody").sortable({
helper: fixHelperModified,
update: updatee
}).disableSelection();
$(".table-sortable thead").disableSelection();
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: