snippets / listcontactsineditchecked

All snippets tagged listcontactsineditchecked (1)

  1. listContactsInEditChecked

    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 }
showing 10, 25, 50 items per pages

Pages : 1

Flux RSS friendsnippetLatest snippets


More...