我正在使用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 );
} );
} );
} );
在这里,我只能看到那些用数据表从分页中打开相同选定值的人。但是如何使用以下方法显示来自datatable的所有值:
oTable.fnFilter( $(this).val(), i ); //$(this).val(), i
但我没有得到我在这里提到的解决我的问题。
答案 0 :(得分:0)
尝试关闭分页,以便加载所有结果。