1

私は現在、この種のテーブルを実装しようとしています: https://datatables.net/examples/server_side/row_details.html

サンプルのJavaScriptをコピーしてテーブルに追加しましたが、これでクラッシュし続けます:

   $("#dyntable2 tbody").on("click", "tr td.details-control", function () {
                var tr = $(this).closest("tr");
                var row = dt.row(tr); <<< At this line

そのエラーで:「Uncaugth TypeError: undefined is not a function (anonymous function)」

編集:ここに完全なjavascriptがあります:

    var $ = jQuery.noConflict();

    function format(d) {
        return 'Flow Name + Id: ' + d.Flow.Name + ' ' + d.Flow.Id + '<br>' +
            'Id Session: ' + d.Id + '<br>' +
            'Placeholder for now, quick monitoring tool after';
    }

    $(document).ready(function() {

        var dt = $('#dyntable2').dataTable({
            lengthMenu: [[10, 25, 50, -1], ["10", "25", "50", "All"]],
            processing: true,
            searching: true,
            paging: true,
            pagingType: "full_numbers",
            serverSide: true,
            ajax: {
                url: "url",
                type: "POST"
            },
                    language: {
                url: "jquery/datatables/French.txt"
            },
            columns: [
                {
                   "class": "details-control",
                    data: null,
                    orderable: false,
                    defaultContent: ""
                },
               [...]
            ]
        });

        var detailsRows = [];

        $("#dyntable2 tbody").on("click", "tr td.details-control", function() {
            var tr = $(this).closest("tr");
            var row = dt.row(tr);
            var idx = $.inArray(tr.attr("id"), window.detailRows);

            if (row.child.isShown()) {
                tr.removeClass("details");
                row.child.hide();

                // Remove from the 'open' array
                window.detailRows.splice(idx, 1);
            } else {
                tr.addClass("details");
                row.child(format(row.data())).show();

                // Add to the 'open' array
                if (idx === -1) {
                    window.detailRows.push(tr.attr("id"));
                }
            }
        });

        // On each draw, loop over the `detailRows` array and show any child rows
        dt.on("draw", function() {
            $.each(window.detailRows, function(i, id) {
                $("#" + id + " td.details-control").trigger("click");
            });
        });

    });

例と同じコードを使用したため、この問題を解決するにはどうすればよいですか?

4

1 に答える 1

3

コードdtには、関数を持たない jQuery オブジェクトがありrow()ます。APIを使用しdt.api().row(tr)て行を取得します。

PS: これは、バージョン 1.10 以前から 1.11 への変更です。

于 2015-05-19T12:46:05.940 に答える