I'm looking at phonegap to replace my app.
Is there a list anywhere (I've looked and cant seem to find it) of the valid values of fields to be searched
var fields = ["*"] ; //what specific fields can I use.
navigator.contacts.find(fields, onSuccess, onError, options);
if I use *
for fields it finds stuff alright but I should be able to specify fields. if I'm searching for something in the url and I put
var fields = ["url"] ; //what specific fields can I use.
navigator.contacts.find(fields, onSuccess, onError, options);
it doesn't find any contacts. Is there a list of valid fields?