Click here to Skip to main content
15,887,776 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
Dear All,
currently i am working with Angular JS.
Now, i have 2 multiple selection list. Now my requirement is when i select any (or Multiple) row or record from first list then 2nd list will be populate based on first list selected rows.

I have fire even on ng-blur for first list , now the problem is it got populate 2nd
list but first list select gone as well as above event fires all the time .

Can any one help me on this?

My code is bellow

HTML
<select class="multipleRow" ng-model="Team.skillSetIdAll" ng-options="u.skillcode as u.Skillname for u in skillSetCollection | filter: { deptId : Team.departmentId}" multiple="" ng-blur="PopulateUsers()">
                                <option value=" ">
                                Select</option>
                            </select>




HTML
<select class="multipleRow" ng-model="Team.auditorIdAll" ng-options="u.UserId as u.UserLogon for u in auditorsCollection" multiple="">
                               <option value="">Select</option>
                           </select>
Posted
Updated 25-Nov-15 23:29pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900