我需要在我的dataTable中过滤我的条目,但是我没有做一个函数并连接我的数据库并按状态按钮返回结果:
Pendiente = Slope
En atención = In Attention
Concluido = concluded
Cancelado = Canceled
我想要这样:当按下任何状态按钮时,过滤数据表中的当前结果而不连接数据库并获取每个状态的数据。
我希望我已经解释了
答案 0 :(得分:0)
根据你的评论,它很容易修复,好的。 here和here是2个样本,在数据表官方网站上可以为您提供解决方案。
有点像这样:
var oTable = $('#example').dataTable( {
"oLanguage": {
"sSearch": "Search all columns:"
}
} );
$("this should be the buttons that you want to bind filter function").click( function () {
/* Filter on the column (the index) of this element */
oTable.fnFilter( "this is the status that you want use to filter", $("tfoot input").index(this) );
} );
请提醒您,如果您对数据表有任何疑问,可以在其论坛中提出。艾伦维持整个项目,他会告诉你一切。