1
を固定する方法:からjquery.dataTables.jsを:私は固定2つの最初の行を作成しようとしていますhttps://datatables.netjQueryのDatables 2つの最初の行は、私が使用しています
、私は今、すべての行ように、ドラッグドロップを使用していますドラッグゲイブルです。
jsfiddle:http://jsfiddle.net/f7debwj2/14/
HTML:
<br>
<br>
<table id="example" class="display" width="100%" cellspacing="0">
<thead>
<tr>
<th>First name</th>
<th>Place</th>
<th>Order</th>
</tr>
</thead>
</table>
jqueryの:
$(document).ready(function() {
var dt = $('#example').dataTable();
dt.fnDestroy();
});
$(document).ready(function() {
var url = 'http://www.json-generator.com/api/json/get/clmDuyndua?indent=2';
var table = $('#example').DataTable({
ajax: url,
createdRow: function(row, data, dataIndex){
$(row).attr('id', 'row-' + dataIndex);
},
rowReorder: {
dataSrc: 'order',
},
columns: [
{
data: 'order'
},{
data: 'name'
},{
data: 'place'
}]
});
table.rowReordering();
});
あなたはデータテーブルの性質を乱すことを考えているので、あなたの質問はあまり明確ではありません... –
はっきりしていませんか?私は最初の2行を単純に固定してみようとしています。 – Raduken
マウスやタッチからのイベントを禁止することでドラッグできないようにしています... –