2
http://plnkr.co/edit/WFONNlAEIeN8K9DEJCqV?p=catalogue斜面刪除 - 角
我裝盤到刪除/移除僅所選擇的行 但沒有成功。
remove函數
$scope.removeTrainee = function(trainee){
var removeTrainee = $scope.trainees.indexOf(trainee);
$scope.trainees.splice(removeTrainee, 1);
};
select函數
$scope.selectedRow = null; // initialize our variable to null
$scope.setClickedRow = function(index){ //function that sets the value of selectedRow to current index
$scope.selectedRow = index;
};
試圖實現在selectedrow NG-IF或& &標誌 什麼都沒有
刪除NG點擊功能起作用,但不適用於選定的。 幫助,請
http://plnkr.co/edit/95naBtiya9FXV7hWGPXM?p=preview – Josito
驚喜!工作,謝謝你! – torresito