0

我需要在我的数据表中过滤我的条目,但我不执行任何功能并连接我的数据库并返回每个状态按钮的结果:

Pendiente = Slope
En atención = In Attention
Concluido = concluded
Cancelado = Canceled

我想要这个:当按下任何状态按钮时,在不连接数据库的情况下过滤数据表中的当前结果并获取每个状态的数据。

在此处输入图像描述

我希望我已经解释了

4

1 回答 1

0

根据您的评论,它很容易修复它,好的。这里这里有 2 个示例,在 datatables 官方网站上可以为您提供解决方案。

有点像这样:

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) );
    } );

并且请提醒您,如果您对数据表有任何疑问,可以在其论坛中提出。allan 维护整个项目,他会告诉你一切。

于 2013-03-15T01:27:33.420 回答