仅在表格中突出显示单元格值

时间:2016-04-15 10:56:08

标签: javascript html css angularjs

我正在使用angularjs,当更新表中的某个值时,我想将CSS类添加到该特定单元格中。

  • 我如何只将高亮类添加到该单元格?而不是整行...使用角度指令

预期行为:由于更新了Value2,因此只应突出显示该单元格。

我的傻瓜:http://plnkr.co/edit/mfglNOpluccUKLTlLdja?p=preview

我的桌子:

<table border="1" style="width: 320px;" class="table table-striped table-hover table-responsive table-bordered">
  <thead style="font-weight: bold;">
    <tr>
      <th ng-repeat="column in columnsTest" ng-if="column.checked" ng-bind="column.id"></th>
    </tr>
  </thead>
  <tbody>
    <tr ng-repeat="row in rows">

      <td ng-repeat="column in columnsTest" ng-if="column.checked">
        <span class="glyphicon glyphicon-circle-arrow-right" ng-show="column.id === 'Value1'"></span>
        <span data-highlighter="row.Updated">{{row[column.id]}}</span>
      </td>
    </tr>
  </tbody>
</table>

的CSS:

.highlight {
background-color: lightgreen;
transition: background 200ms;
}

角度指令:

app.directive('highlighter', ['$timeout', function ($timeout) {
return {
    restrict: 'A',
    scope: {
        model: '=highlighter'
    },
    link: function (scope, element) {
        scope.$watch('model', function(updated) {
                if (updated) {


                element.addClass('highlight');

                // auto remove after some delay
                $timeout(function () {
                    element.removeClass('highlight');
                }, 1000);
                }
        });
    }
};

1 个答案:

答案 0 :(得分:2)

这部分是问题所在:

model: '=highlighter'

,因为

<span data-highlighter="row.Updated">

这将为model提供row.Updated的值,这是一个将在所有三列上更改的值,因为它是在其父级上定义的。

将其更改为

<span data-highlighter="row[column.id]">

然后它有效。

编辑:删除了我之前的回答。