3

固定ヘッダー jquery pluginの安定ビルド バージョン Stable release v2.1.2 を使用しています。テーブルヘッダーを修正しようとしています。here で説明したように、Angular データテーブルを使用してテーブルを作成しました。

私のコントローラークラスでは、次のコードを書きました。

app.controller("SampleController", function ($scope) {

    $(document).ready( function () {
        var table = $('#example').DataTable();
        new $.fn.dataTable.FixedHeader( table );
    });

});

私のHTMLは次のとおりです。

 <table id="example" datatable="ng" dt-options="dtOptions" dt-column-defs="dtColumnDefs" fix-header>
              <thead>
                <tr>
                    <th>Name </th>
                </tr>
               </thead>    
              <tbody> 
                   <tr ng-repeat="item in items">
                        <td>{{item.name}} </td>
                   </tr>
              </tbody>
 </table>

ただし、アプリケーションを実行すると、次のエラーが発生します。

TypeError: 未定義のプロパティ 'childNodes' を読み取れません

Controller で DOM 操作を行うべきではないことを認識しているため、次のディレクティブも使用してみましたが、次のエラーが発生します。

TypeError: 未定義のプロパティ '_oPluginFixedHeader' を設定できません

アップデート:

私の指令

app.directive('fixHeader', function () {
    return {
        restrict: 'AE', //attribute or element
        replace: true,
        link: function ($scope, elem, attr) {
            $scope.table = elem.find("#example");  
            console.log($scope.table);
            var table= $scope.table.dataTable(); 
            new $.fn.dataTable.FixedHeader(table); 
        }
    };
});

誰かがより良い解決策を提案できますか?

バージョン2.1.2dataTables.fixedHeader.jsを使用していますが、エラーは次の行に表示されます

 var dt = $.fn.dataTable.Api ?
        new $.fn.dataTable.Api( mTable ).settings()[0] :
        mTable.fnSettings();

    dt._oPluginFixedHeader = this; //error over here
4

1 に答える 1

3

Angular アプリにangular-datatables.fixedheader.min.js datatables.fixedheader` へのangular-datatablesプラグインも提供します。あなたのコードは以下のようになります。FixedHeader works with datatables. You need to add the filesto your HTML. You also need to add the dependency

HTML

<table datatable="" dt-options="dtOptions" dt-columns="dtColumns" class="row-border">
    <thead>
        <tr>
            <th>Name </th>
        </tr>
    </thead>
    <tbody>
        <tr ng-repeat="item in items">
            <td>{{item.name}} </td>
        </tr>
    </tbody>
</table>

コード

var app = angular.module('app', ['datatables', 'datatables.fixedheader'])
app.controller("SampleController", function($scope, DTOptionsBuilder, DTColumnBuilder) {
    $scope.dtOptions = DTOptionsBuilder.fromSource('data.json')
        .withPaginationType('full_numbers')
        .withDisplayLength(25)
        .withFixedHeader({
            bottom: true
        });
    $scope.dtColumns = [
        DTColumnBuilder.newColumn('id').withTitle('ID'),
        DTColumnBuilder.newColumn('Name').withTitle('Name'),
        DTColumnBuilder.newColumn('Address').withTitle('Address')
    ];
});

内部にすでにディレクティブが作成されているため、ディレクティブを追加する必要はありませんangular-datatables.fixedheader.min.js(参照リンク)

アップデート:

以下の変更はコードで行う必要があります。

  1. FixedHeaderjs コードと jquery コードを次のように置き換えますnew $.fn.dataTable.FixedHeader($element.find('#example'))
  2. 設定するメソッドを呼び出しますFixedHeader

コントローラ

(function(angular) {
    angular.module('showcase.angularWay', ['datatables'])
    .controller('AngularWayCtrl', AngularWayCtrl);

    function AngularWayCtrl($http, $element) {
        var vm = this;
        $http.get('data.json').then(function(res) {
            vm.persons = res.data;
            vm.setFixedHeader(); //call method to set glass.
        });

        vm.setFixedHeader = function(){
            //var table = $element.find('#example').DataTable();
            new $.fn.dataTable.FixedHeader($element.find('#example'))
        };
    }
})(angular);

このコードをディレクティブに移動することもできますが、余分なヘッダーとして追加されるヘッダー列を削除する必要があるだけです。

上記の更新されたソリューションについては、このリンクを参照しました

働くプランカー

于 2015-03-05T20:21:08.197 に答える