动态更改可搜索的数据表列属性

时间:2017-10-17 04:42:19

标签: javascript jquery datatables

在初始化列的数据表bSearchable属性之后,我必须更改一个函数。我需要先启用然后禁用它。

我找到了一个可见性的例子:

$(document).ready(function() {
    var table = $('#example').DataTable( {
        "scrollY": "200px",
        "paging": false
    } );

    $('a.toggle-vis').on( 'click', function (e) {
        e.preventDefault();

        // Get the column API object
        var column = table.column( $(this).attr('data-column') );

        // Toggle the visibility
        column.visible( ! column.visible() );
    } );
} );

在我的案例中也可以使用类似的东西吗?像column.seachable

这样的东西

1 个答案:

答案 0 :(得分:0)

这是一个古老的问题,但是这个问题花费了我几个小时来研究答案……主要是由于我缺乏JS技能。

用例是我有一个ID列为GUID的表。很少使用此ID占用大量空间,因此默认情况下它是隐藏的且不可搜索。但是对于可能有权访问日志或数据库的内部用户,我们也需要能够搜索ID列。

我为这些用户添加了一个复选框,它应该更改可见性以及ID列的searchable属性。 我的解决方案基于another question regarding searching on columns。但是在这个问题中,搜索仅打算在单个列上进行,而不是在所有可搜索列上进行(常规DataTable.search() API)。可悲的是,要更改searchable属性,似乎没有公共API。如果更改searchable属性,则之后必须使表中的数据无效,否则列数据将仍然/不存在于表aoFilterData中。这将强制表从数据源(在本例中为DOM)重新加载数据。

在正确的位置注册事件处理程序时,我遇到很多问题。在表的第一个draw事件中不存在filter字段,因此我不得不在表完全初始化后触发的init事件中注册处理程序。

var userTable;
var idSearchCbx;
var searchField;

$(document).ready(function () {
userTable = document.getElementById("table-users");
if (userTable) {
    userTable = $("#table-users").DataTable(
        {
            "columnDefs": [
                {
                    //First column invisible and not searchable by default
                    "targets": [0], //first column = ID
                    "visible": false,
                    "searchable": false
                }],
          //Other initialization options
    ); //Table creation
    userTable.on("init",
        function () {
            $("input[type='search']").on("change cut input keypress keyup paste search recheck",
                function () {
                    var searchValue = $(this).val();
                    userTable.search(searchValue).draw();
                    //width attribute is calculated and added to the table
                    //it loses 2 pixels everytime the checkbox is checked/
                    //unchecked somehow - so delete it
                    document.getElementById("table-users").removeAttribute("style");
                });

            idSearchCbx = $("#cbx-search-id");
            idSearchCbx.on("change",
                function () {
                    if (this.checked === true) {
                        //this makes the first column searchable, not official API
                        userTable.context[0].aoColumns[0].bSearchable = true;
                        //make it visible as well, official API
                        userTable.columns(0).visible(true);
                        //invalidates cached table data so that the column values are
                        //added to the filterdata
                        userTable.rows().invalidate().draw();
                    } else {
                        userTable.context[0].aoColumns[0].bSearchable = false;
                        userTable.columns(0).visible(false);
                        userTable.rows().invalidate().draw();
                    }
                    //trigger the normal search again so that the
                    //filter is / is not applied to the first column
                    $("input[type='search']").trigger("recheck");
                });
        }); //DT on init
    } //table present
});//document ready

我假设上下文与settings()相关,因此请记住,上下文中的名称可能会更改,即使在次要版本中,这也很可能不是版本稳定的。但是我没有找到其他办法。希望对别人有帮助。