码迷,mamicode.com
首页 > 其他好文 > 详细

DataTables列过滤器

时间:2015-06-29 20:04:50      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

var table = $(‘#example‘).DataTable();
 
table.columns().flatten().each( function ( colIdx ) {
// Create the select list and search operation
var select = $(‘<select />‘)
    .appendTo(
        table.column(colIdx).footer()
    )
    .on( ‘change‘, function () {
        table
            .column( colIdx )
            .search( $(this).val() )
            .draw();
    } );
 
// Get the search data for the first column and add to the select list
table
    .column( colIdx )
    .cache( ‘search‘ )
    .sort()
    .unique()
    .each( function ( d ) {
        select.append( $(‘<option value="‘+d+‘">‘+d+‘</option>‘) );
    } );

  

DataTables列过滤器

标签:

原文地址:http://www.cnblogs.com/chengshuiqiang/p/4607893.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!