数据表未显示搜索框且不允许排序

时间:2015-07-01 00:11:10

标签: javascript jquery html datatable

我有以下表格的html代码:

<table id="employeeDetails" class="table table-bordered table-striped">
        <thead>
            <tr>
                <th>First Name</th>
                <th>Last Name</th>
                <th>Country</th>
                <th>Team</th>
            </tr>
        </thead>
</table>

以下是dataTable初始化的代码:

$('#employeeDetailsTable').dataTable({
        "processing":true,
        "ajax" : {
            "url" : '/fetchSearchResults',
            "type" : 'POST'
            }
        }
});

我在互联网上的许多地方读过如果使用colspan,则不提供数据表中的排序功能和搜索框。即使没有使用colspan,我也没有在我的数据表中获得这些功能。可能的原因是什么?

0 个答案:

没有答案