Tagged Questions
0
votes
2answers
145 views
How to select Parent Checkbox when a Child is selected inside ng-repeat
I am having a very hard time trying to figure out a solution for this. I have a checkbox group where the first checkbox is the parent and the following in that set will be child. I want the parent ...
0
votes
1answer
211 views
AngularJS hardcode checkbox filter
I've a tricky question.
How can I filter a scrope with multiple checkbox ?
This is my scope :
function UserListCtrl($scope, $filter) {
$scope.users ...
0
votes
0answers
164 views
AngularJS Dynamic checkbox not binding to scope - late binding ng-repeat
I am having problems filtering using dynamically generated checkboxes.
Hacky but working:
<div class="col col-sm-3">
<div class="well well-sm">
<div class="btn-group">
...
0
votes
1answer
130 views
ng-models not binding when ng-checked
I have a Parent checkbox that gets checked when a child checkbox is clicked. I want this parent checkbox to in-turn bind with a third checkbox. But the 2 way binding is not working when the change is ...
0
votes
1answer
153 views
Prepopulating checkbox with content from array?
I have a checkbox which calls a function on ng-click that inserts into a checkedItems array.
How do I prepopulate this checkbox with elements from the checkedItems arrray?
Here are the relevent ...