I need to set a filter in the ng-repeat tag to loop a userlist with items (cards) that each user has.
I've tried to set a filter with "filterSet" but this doesn't work for me.
How can I get the items of each user?
<ul data-drop="true" ng-repeat="user in userList" jqyoui-droppable="{multiple:true}">
<li ng-repeat="card in cardList" data-drag="true" data-jqyoui-options="{revert: 'invalid'}" jqyoui-draggable="{index: {{$index}},animate:true}">{{card}}</li> </ul>