BB10 Has strict UI guidelines. You can do this two ways. You can invoke the already existing native Contact List "Card" or call the find API directly.
To Invoke the Contact List card, use the invokeContactPicker invocation pattern.
The full sample code is on the blackberry developer site https://developer.blackberry.com/html5/apis/blackberry.pim.contacts.html#.invokeContactPicker, but here are the important snippets for invoking a single selection Card (you can invoke single, multiple and attribute selection):
function onCancel() {
alert("User pressed cancel in contact picker.");
}
function onInvoke(error) {
if (error) {
alert("Error invoking contact picker: " + error.code);
} else {
alert("Contact picker invoked!");
}
}
function onContactSelected(data) {
var contact = contacts.getContact(data.contactId);
if (contact) {
alert("Contact id #" + contactId + " corresponds to '" + contact.name.givenName + " " + contact.name.familyName +"'.");
} else {
alert("There is no contact with id: " + contactId);
}
}
function onContactsSelected(data) {
alert("Total # contacts selected: " + data.contactIds.length);
}
function invokeContactPickerSingle() {
contacts.invokeContactPicker({
mode: ContactPickerOptions.MODE_SINGLE,
fields: ["phoneNumbers"]
}, onContactSelected, onCancel, onInvoke);
}
To gather contacts and process them directly, use the blackberry.pim.contacts.find API.
The full sample code is on the blackberry site, here: https://developer.blackberry.com/html5/apis/blackberry.pim.contacts.html#.find but below is a snippet of the relevant code:
function listAllContacts() {
var sort = [{
"fieldName": ContactFindOptions.SORT_FIELD_FAMILY_NAME,
"desc": false
}, {
"fieldName": ContactFindOptions.SORT_FIELD_GIVEN_NAME,
"desc": true
}],
// no filter - return all contacts
findOptions = {
// sort contacts first by family name (desc), then by given name (asc)
sort: sort,
limit: -1 // limit - all contacts returned
};
contacts.find(["name"], findOptions, onFindSuccess, onFindError);
}
function onFindSuccess(results) {
console.log("Found " + results.length + " contacts in total");
}
function onFindError(error) {
console.log("Error: " + error.code);
}
Let me know if this helps out!