You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "bhavesh b (JIRA)" <ji...@apache.org> on 2013/02/14 12:36:12 UTC

[jira] [Created] (CB-2437) Contacts API: When user tries to search contact with space, it does not shows the result.

bhavesh b created CB-2437:
-----------------------------

             Summary: Contacts API: When user tries to search contact with space, it does not shows the result.
                 Key: CB-2437
                 URL: https://issues.apache.org/jira/browse/CB-2437
             Project: Apache Cordova
          Issue Type: Bug
          Components: iOS
    Affects Versions: 2.3.0
            Reporter: bhavesh b
            Assignee: Shazron Abdullah


I am trying to use the contacts.find api to search the contact. but it does not return the contact if the filter option is given with space(e.g. abc xyz).  

Here is a code snippet of what I am trying to do:

options = new ContactFindOptions();
options.filter = request.term;
options.multiple = true; 
fields = ["displayName", "phoneNumbers", "emails"];
navigator.service.contacts.find(fields,
function (contacts) {
var responseList = [];
}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira