listContactsInEditChecked
1 function listContactsInEditChecked(){
2 var displayName = '';
3 var editUserId = '';
4 var editUserIdCurContact = '';
5
6 // initialize to empty
7 chkdContactsArray = [];
8
9 for (var i = 0; i < contactsInContactList(defaultContactList).length; i++) {
10
11 for (var j = 0; j < contactsInContactList(curContactList).length;j++) {
12
13 if (!contactsInContactList(defaultContactList)[i].wcapUser.isBlocked) {
14 editUserId = contactsInContactList(defaultContactList)[i].wcapUser.userID.userId;
15 editUserIdCurContact = contactsInContactList(curContactList)[j].wcapUser.userID.userId;
16 displayName = contactsInContactList(defaultContactList)[i].displayName;
17
18 if (editUserId == editUserIdCurContact) {
19 $(editUserId+'_checkbox').checked = true;
20 chkdContactsArray.push(contactsInContactList(curContactList)[j].wcapUser.userID.fullAddress);
21 }
22 }
23 }
24 }
25
26 }
Pages : 1