Reputation: 61
I'm working with lifaray portal 6.2. And I want to get all checked checkboxes inside of a with alloy user interface. I tried A.one('#myDiv>:checkbox:checked')
but it didn't work. please help.
Upvotes: 1
Views: 105
Reputation: 933
Try this: A.all('#myDiv input:checked')
and if you want to check length try with: A.all('#myDiv input:checked').size();
.
Upvotes: 3