修复了AngularJS中的头表

时间:2013-06-28 10:01:27

标签: javascript jquery angularjs angularjs-ng-repeat

我遇到了涉及固定标头表的问题。我正在使用AngularJS& Bootstrap构建Web应用程序。我不能使用ng-grid,因为它不支持IE7。所以,我按ng-repeat填充表格行。该应用程序响应。所以,我不能给单元格/标题赋予固定的宽度。有没有简单的方法来修复表头?

我在Fixed header table with AngularJS

处张贴了一个Plunker

提前致谢。

6 个答案:

答案 0 :(得分:7)

我最近为此创建了一个指令,您可以使用bower安装它:

bower install angu-fixed-header-table

有关详细信息和工作示例,您可以在http://pointblankdevelopment.com.au/blog/angularjs-fixed-header-scrollable-table-directive

查看我的博文

答案 1 :(得分:1)

我使用了Kumar的建议并创建了两个表。一个包含thead,另一个包含thead和tbody。

<div ng-style="{'margin-right': scrollBarWidth}">
    <table>
       <thead>
         <tr>
            <th width="{{tableSizes[0].width}}">Col0</th>
            <th width="{{tableSizes[1].width}}">Col1</th>
            <th width="{{tableSizes[2].width}}">Col2</th>
         </tr>
       </thead>
    </table>
 </div> 
 <div class="fixedHeadBody">
    <table ng-style="{'margin-top': -rowSize.height}">
       <thead>
         <tr el-size="rowSize">
           <th el-size="{{tableSizes[0].width}}">Col0</th>
           <th el-size="{{tableSizes[1].width}}">Col1</th>
           <th el-size="{{tableSizes[2].width}}">Col2</th>
         </tr>
       </thead>
       <tbody>
         <!-- data goes here -->
       </tbody>
    </table>
 </div>

在第二个的内容中,我添加了一个指令(见下文),它监视每列的宽度和高度。这些列的输出用于设置第一个thead的宽度(角度绑定)。我还将相同的指令添加到第二个表的thead tr,并使用height值隐藏第二个表的可滚动的thead。这样,我只展示了第一个修复的thead。

我需要解决的另一件事是scrollBar。滚动条占用空间并且使第一个和第二个表之间的列不对齐。为了解决这个问题,我在顶部表格中添加了一个右边距,它等于滚动条的宽度(包含表格和表格的div之间的宽度差异)。滚动条宽度因浏览器而异,最后一个功能适用于任何浏览器。

app.directive('elSize', ['$parse', '$timeout', function ($parse, $timeout) {
    return function(scope, elem, attrs) {
        var fn = $parse(attrs.elSize);

        scope.$watch(function () {
            return { width: elem.innerWidth(), height: elem.innerHeight() };
        },
        function (size) {
            fn.assign(scope, size);
        }, true);
    }
}])

在控制器中,您可以使用以下功能设置scrollBarWidth。一旦表格被渲染,你可以从任何地方调用$ scope.setScrollBarWidth()。

    $scope.scrollBarWidth = "5px";
    $scope.setScrollBarWidth = function () {
        $timeout(function () {
            var divWidth = $(".fixedHeadBody").width();
            var tableWidth = $(".fixedHeadBody table").width();
            var diff = divWidth - tableWidth;
            if (diff > 0) $scope.scrollBarWidth = diff + "px";
        }, 300);
    }

答案 2 :(得分:0)

一位同事和我刚刚发布了一个新的GitHub项目,该项目提供了一个Angular指令,您可以使用它来使用固定标题来装饰您的表:https://github.com/objectcomputing/FixedHeader

此实现并不像其他一些实现那样功能齐全,但如果您只需要添加固定表,我们认为这可能是一个不错的选择。

答案 3 :(得分:0)

好吧,使用$ watch和jQuery这是一种肮脏的方式。

只需复制表格标题并将其粘贴即可。它并不完美,但却符合目的。

这是小提琴:http://jsfiddle.net/jchnxu/w1n1fp97/7/

// watch the width of table headers
        scope.$watch(function() {
          return {
            width: $(th).innerWidth(),
            height: $(th).innerHeight()
          };
        }, function(size) {
          console.log(size);
          $($stickyThs[i]).attr('width', size.width);
        }, true);

// also watch the table width
      scope.$watch(function() {
        return $bodyTable.innerWidth();
      }, function(width) {
        $headerTable.css('width', width + 'px');
      }); 

答案 4 :(得分:0)

您可以使用优秀的ag-Grid库。

agGrid.initialiseAgGridWithAngular1(angular); // https://www.ag-grid.com/best-angularjs-data-grid/index.php
angular.module('myApp', ['agGrid'])

然后在您的控制器中定义一个gridOptions(或其他变量名称),如下所示:

var nbCols = 10,
    nbLines = 300,
    list = [],
    cols = [],
    columnDefs = [],
    i, j;

for (i = 0 ; i < nbCols ; i++) {
    var fieldName = 'col' + i;
    cols.push(fieldName);
    columnDefs.push({
        headerName: 'Col' + i,
        field: fieldName,
        editable: true
    });
}
for (i = 0 ; i < nbLines ; i++) {
    var elem = {};
    for (j = 0 ; j < nbCols ; j++) {
        elem[cols[j]] = 'content '+i+'-'+j;
    }
    list.push(elem);
}
$scope.list = list;
$scope.cols = cols;

$scope.gridOptions = {
    columnDefs: columnDefs,
    rowData: list,
    singleClickEdit: true
};

最后在HTML中定义你的表:

<div ag-grid="gridOptions" class="ag-fresh" style="height: 300px;"></div>

答案 5 :(得分:-1)

最好将标题部分保留在表格之外。 拿两张桌子:

  • 一个用于标题和
  • 另一个表数据。 (仅将滚动条放在表数据部分。)
祝你好运!