Question

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?

Was it helpful?

Solution

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; 
};
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top