0

我正在使用 jQuery 数据表。我在一列中使用动态下拉列表。在这里,我在thead该特定列中选择了一个下拉列表。现在,如果我从中选择值thead,那么数据表。

行应该从下拉列表中选择的相同值中检索。

示例代码:

$(document).ready(function() {
    /* Initialise the DataTable */
    var oTable = $('#dt3').dataTable( {
        "oLanguage": {
            "sSearch": "Search all columns:"
        }
    } );

    /* Add a select menu for each TH element in the table footer */
    $("#status").each( function ( i ) {  // status is a id of thead dropdown
        this.innerHTML = fnCreateSelect( oTable.fnGetColumnData(i) );
        $('select', this).change( function () {


        var sel= $(this).val(); 
        alert(sel);
  $(".statusselect option:selected").each(function() {
    var selectedvalue=$(this).text();
    if(sel==selectedvalue)
    alert($(this).text());
    oTable.fnFilter( $(this).val(), i );
});

     //oTable.fnFilter( $(this).val(), i );
        } );
    } );
} );

在这里,我只能看到那些以分页打开的数据表中相同的选定值。但是我如何使用以下方法显示数据表中的所有值:

oTable.fnFilter( $(this).val(), i );  //$(this).val(), i 

但我没有得到我必须在这里提到的来解决我的问题。

4

1 回答 1

0

尝试关闭分页,以便加载所有结果。

于 2013-05-01T06:13:09.250 回答