ng-grid:如何立即选择新行

时间:2014-02-05 19:39:26

标签: angularjs angular-ui ng-grid

我构建一个ng-grid并通过单击按钮动态添加一行;但是,使用网格选项 - selectRow无法立即选择新行。

这是演示: http://plnkr.co/edit/Kqw68GD09Jqqkrf1svGJ?p=preview

是否有人可以帮助我如何在插入新行后选择它?谢谢。

1 个答案:

答案 0 :(得分:3)

您可以尝试使用watch 0:

添加$timeout
 $scope.$watch(function () {
       return $scope.myData;
    },
    function (newValue, oldValue) {
     $timeout(function(){
       $scope.gridOptions.selectRow(newValue.length-1,true);
     },0);
    }, true);

演示 Plunker