如何修改jQuery数据表中的下拉字段值

时间:2018-11-08 16:43:53

标签: jquery search drop-down-menu datatable datatables

我想在jQuery数据表中添加下拉搜索。我已经实现了segment.i要根据用户要求进行一些更改。

这是整个代码段。

<script>
        // initialising dt table
        $(document).ready(function() {

            $('#example').DataTable({                   
                // Definition of filter to display                  
                filterDropDown: {                                       
                    columns: [
                        { 
                            idx: 1
                        },
                        { 
                            idx: 2
                        },
                        { 
                            idx: 3
                        }
                    ],
                    bootstrap: true
                }
            } );
        } );
    </script>       

表HTML就像

<body>
    <div class="container">
            <table class="table" id="example" class="display" width="100%" cellspacing="0">
            <thead>
                <tr>
                    <th>First name</th>
                    <th>Last name</th>
                    <th>Position</th>
                    <th>Office</th>
                    <th>Salary</th>
                </tr>
            </thead>...................... + Data

enter image description here

这些是我要删除过滤器名称的修改。在默认情况下进行的搜索中,其名称为all。请参考所附的屏幕截图。 您的帮助将不胜感激。

谢谢。

0 个答案:

没有答案