使用ng-hide在colResizable中切换表中的列

时间:2015-03-11 19:06:01

标签: javascript jquery angularjs

我创建了一个简单的指令,它使用了colResizable插件,它只是在渲染后激活桌面上的插件:

app.directive("columnResizable", this.columnResizable = function($timeout) {
    return {
        restrict: "A",
        link: function(scope, element, attrs) {
            // Initialize colResizable plugin after DOM
            $timeout(function() {
                element.colResizable({
                    liveDrag:true,
                    postbackSafe: true,
                    partialRefresh: true,
                    minWidth: 100
                });
            });
        }
    }
});

这个指令运行正常,直到我需要添加一个功能来隐藏和显示表中的列。我通过更改localStorage布尔变量来使用ng-hide并打开或关闭列。如果我从"显示所有"开始,列隐藏/显示就像预期一样州。但拒绝透露我是否从隐藏状态开始:

<button class="btn btn-default"
  ng-class="{active: emailHidden}"
  ng-click="emailHidden = !emailHidden">Hide Email</button>

<table column-resizable class="table table-bordered table-striped">
    <thead>
        <tr>
            <th>Name</th>
            <th ng-hide="emailHidden">Email</th>
        </tr>
    </thead>
    <tbody ng-if="!scheduleEntries || scheduleEntries.length == 0">
        <tr>
            <td>Foo Bar</td>
            <td ng-hide="emailHidden">foo@bar.com</td>
        </tr>
    </tbody>
</table>

我创建了一个带有常规布尔变量的plunker。如果您将$ scope.emailHidden变量更改为开始隐藏,则可以看到单击按钮时电子邮件列不会显示:http://plnkr.co/edit/Y20BH2

2 个答案:

答案 0 :(得分:2)

我最终为指令中的emailHidden变量添加了一个观察器,一旦更改,它会重置列宽并重新初始化colResizable插件:

scope.$watch('emailHidden', function(newVal) {
  element.find('th').css('width','auto');
    $timeout(function() {
        element.colResizable({
            liveDrag:true,
            postbackSafe: true,
            partialRefresh: true,
            minWidth: 100
        });
    });
});

updated plunker

如果有人有更好的方法来解决这个问题,我感激不尽。最好不要涉及$ watch

答案 1 :(得分:0)

$scope.emailHidden值设置为true时,ColResizer会将第二列的宽度更新为零。即使emailHidden标志设置为false,此宽度也不会更新。由于第二列在这种情况下没有任何宽度,我们无法在屏幕上看到它。