0
我希望我的代碼根據哪個行的更新按鈕被點擊來更新ng-grid的單元格。我想在按下HTML代碼中定義的更新按鈕而不是ng-grid
中的更新按鈕後更新值。我應該如何在我的代碼中調用並定義update1();
函數?使用HTML按鈕更改ng-grid單元格值?
這裏的plunker:http://plnkr.co/edit/Cdnc1HQKAbCvZ0bW2Uei?p=preview
我的JS UPDATE1功能:
$scope.update1 = function(){
$scope.Name = $scope.student.name;
row.entity.Age = $scope.student.class;
};
我的HTML按鈕代碼:
<button ng-click="update1()">Update</button>
沒問題車。有效。非常感謝。 :) –