2014-02-05 64 views

回答

3

你可以嘗試添加watch$timeout 0:

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

演示Plunker

+0

它的工作完美!謝謝Maxim。 – early