テーブルdataTableを利用して、IDでソートしたい。
order:[ 1 , 'desc' ] を設定したが、大きい順にならないです。
どのように修正をしたら良いでしょうか?
order:[ 0 , 'desc' ] や
1,2 にしても、変わらなかったです。
ご教授の方、よろしくお願いいたします。
[blade.php]
<div class="table-responsive"> <table id="histoy-table" class="table table-bordered table-striped table-hover js-basic-example dataTable"> <thead class="primary-color-dark white-text"> <tr class="headline bg-blue-grey"> <th class="txt-center">ID</th> <th class="th-sm txt-center"> そのた</th> </tr> </thead> <tbody></div> <script src="{{ asset('js/Sortable.js') }}"></script> <script src="{{ asset('js/Sortable_app.js') }}"></script> <script> $(document).ready(function() { $('#histoy-table').DataTable( { info:false,paging:false,searching:false,order:[ 1 , 'desc' ], } ); </script>@foreach ($histories as $history) <tr> <td class="th-sm txt-center">{{ $history->id }}</td> <td>{{ $history->remarks }}</td> </tr> @endforeach </tbody> </table>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/30 02:12