Frage

I have this HTML

<li ng-click="toggleCheckbox('LandDTO.Car.Motor')">
<li ng-click="toggleCheckbox('LandDTO.Car.Motor2')">

and here is my function

$scope.toggleCheckbox = function (model) {
$scope[model] = true; 
};

Its not working, what am I doing wrong?

War es hilfreich?

Lösung

change <li ng-click="toggleCheckbox('LandDTO.Car.Motor')"> to <li ng-click="toggleCheckbox('Motor')">

and in function change it to

$scope.toggleCheckbox = function (model) {
    $scope.LandDTO.Car[model] = true; 
};
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top