0

dataTableのエントリをフィルタリングする必要がありますが、関数を実行せず、データベースに接続して、ステータスボタンごとに結果を返します。

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

これが欲しい:ステータスボタンを押すと、データベースに接続せずにデータテーブルで現在の結果をフィルタリングし、各ステータスのデータを取得します。

ここに画像の説明を入力してください

説明したと思います

4

1 に答える 1

0

修正するのは簡単だというあなたのコメントによると、わかりました。ここここに、datatablesの公式Webサイトで解決策を提供できる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) );
    } );

また、データテーブルについて質問がある場合は、そのフォーラムで取り上げることができます。アランはプロジェクト全体を維持し、彼はあなたにすべてを教えてくれます。

于 2013-03-15T01:27:33.420 に答える