datatables - 带有多选下拉菜单的数据表特定列过滤器

标签 datatables jquery-datatables

我在 Datatable API 中看到了这种可能性,用于使用 Drop down 进行特定列过滤。

引用:https://datatables.net/examples/api/multi_filter_select.html

但对我来说,它的不同,我需要对多选下拉菜单做同样的事情。所以数据表应该相应地显示结果。

所以在上面的链接中,我不能选择两个办公室“东京和伦敦”。我已经使用多选插件( http://harvesthq.github.io/chosen/ )实现了编码,但数据表只需要一个选项。

那可能吗?如果是这样,你能帮忙解决这个问题。

最佳答案

经过长时间的搜索,我找到了解决方案。

其实这很简单。以下是我对此选项的修复,

已经有一个选项可以根据以下链接搜索特定的列虎钳,

http://www.datatables.net/examples/api/multi_filter.html

   // DataTable
    var table = $('#example').DataTable();

    // 2 is column id 
    // "India" is search string
    table.column( 2 ).search( 'India' ).draw(); 

So the above one will search for "India" in a specific column "2" (Say like "Country" column)

Here i need an ability to search for more than one country like "India, Japan etc.,"

So the code will be as follows,

        // DataTable
        var table = $('#example').DataTable();

        // 2 is column id 
        // "India|Japan|Spain" is search string
        table.column( 2 ).search( 'India|Japan|Spain', true, false ).draw(); 

    Updated: We need to add two more parameters in the "search()" function.

    search(val_1,val_2,val_3)

    where,
    val_1 is search string with "|" symbol seperated. So it contains regular express chars as per the example. 
    val_2 is true (To enable regular express in the search)
    val_3 is false (To disable smart search. default is true)

引用:https://datatables.net/reference/api/search()

所以我刚刚在搜索字符串之间添加了一个“管道”符号:p LOL

关于datatables - 带有多选下拉菜单的数据表特定列过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27479868/

相关文章:

JQGrid、Telerik、DataTables 等哪个好?

jQuery Datatables,如何从每个页面获取所有选中的复选框

javascript - Bootstrap Multiselect 和 $.ajax GET 以及嵌套对象

r - 在 R Shiny 中使用 TableTools for DataTables for renderDataTable

php - 动态获取数据表中 $Columns 数组中的列名

javascript - 如何从 jQuery DataTable 中的所有页面中选择所有复选框

javascript - 如何在DataTables插件中添加编辑按钮?

javascript - 获取要在 html 链接中使用的 DataTables 单元格值

c# - 通过相同的值从另一个连接的 DataTable 更新 DataTable 的多列