したがって、colReorder
と一緒にjqueryデータ型を使用してテーブルを設定しています。この表には、列ヘッダーをクリックして切り替える列を選択する方法など、いくつかの機能があります。この機能を動作させるためには、colReorder
を有効にしなければなりませんでした。唯一の問題は今、私のすべての列はドラッグ可能です。これをどうすれば解決できますか?jqueryデータテーブルのドラッグアンドドロップを無効にする方法
ここで私が間違ってやっているお聞かせください偽
にbsortable
をfalseに設定
bsort
をfalseに設定draggable
を設定する私は
- を試みたものです。また、ここに私のコンストラクタです:
window.table = $table.DataTable({ data: window.apiData['data'], /** dat * Specify which columns we're going to show */ columns: window.columnMapping, /** * we want to disable showing page numbers, but still limit the number of results */ dom: "t", /** * let's disable some dynamic custom css */ asStripClasses: [], /** * let's keep the pages reasonable to prevent scrolling */ pageLength: 8, /** * this helps with hotswapping columns */ colReorder: true });
ありがとう!
私の場合は、 '$( 'dataTable')の'((。dataTable thead th ')をそれぞれの(function(){...}) 'に置き換えなければなりません。 ().header())。each(function(){...}) '。ありがとうございました。 – eXe