1

我正在使用 JQuery DataTable Column Filter 插件......它工作正常,但唯一的问题是选择下拉列表没有被填充......我正在使用服务器端获取......如何做到这一点,即自动填充?

$(document).ready(function() {
    $('#example').dataTable().columnFilter({
        aoColumns: [{
            type: "select",
            values: ['Gecko', 'Trident', 'KHTML', 'Misc', 'Presto', 'Webkit', 'Tasman']
        }, {
            type: "text"
        },
        null, {
            type: "number"
        }, {
            type: "select"
        }]
    });
});

如果我指定 { type: "select"} 没有值它不起作用..但是文档说它会自动填充...

4

1 回答 1

0

根据问题 34:在服务器中处理数据时自动构建不起作用(bServerSide = true)

https://code.google.com/p/jquery-datatables-column-filter/issues/detail?id=34

于 2013-03-12T16:24:19.470 回答