用户可自定义数据表

时间:2017-09-07 10:15:22

标签: javascript jquery datatable

我在我的项目中使用Datatable。 我在表格中显示20-25列。 在data table中是否有任何选项可供用户自己隐藏不需要的列并仅显示他/她想要显示的列。

我的数据表:

$("#datatable-buttons").DataTable({
        "destroy": true,
        "order": [],
        dom: "Bfrtip",
        "bProcessing": false,
        "bServerSide": false,
        "searching": false,
        "pageLength": 10,
        "autoWidth": false,
        "bAutoWidth": false, // Disable the auto width calculation 
        "sort": "position",
        "stateSave": true,
        "scrollX": true,
        "ajax": "MyURL"
});

1 个答案:

答案 0 :(得分:1)

我认为您希望在网页中加载数据后显示/隐藏列。 请查看以下链接,其中显示了之后的显示/隐藏列 在datatable中加载数据。Show / hide columns dynamically。可能会有帮助。