6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

DataTablesでカスタムソート

Last updated at Posted at 2018-01-24

#ソースコード

See the Pen DataTables custom sort by umerin (@umerin) on CodePen.

#メモ

columnDefsというオプションのcolumns.orderDataTypeに好きな名前を付けます。

columnDefs : [
  { 
    'title' : '都道府県',
    'data' : 'prefectures',
    'targets' :  0,
    'orderable' : true,
    'orderDataType' : 'dom-jp'  //今回はdom-jpにしました。
  }
]

セルの情報ごとに数字かアルファベットを返すと、自動でソートしてくれます。
数字だと辞書順になってしまい、14より2が昇順で下になってしまうようです。
数字2ケタの文字列に変更しました。
※最新バージョンは確認していません

$.fn.dataTable.ext.order['dom-text'] = function(settings, col)
{
  return this.api().column(col, {order:'index'}).nodes().map(function(td, i){

    //ここに書いてあげます。

  });
}

DataTablesの概要と使い方はこちらのQiita記事が参考になります。

こちらのブログを参考にさせていただきました。

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?