The searchResult
object provides access to the result of a search
request.
It is created by a call to the connection.search method and is returned in the result
property
of the success callback.
Retrieves the number of matching entries for the search operation
var count = searchResult.countEntries();
Retrieves the first entry in the search results list. Returns null if there are no entries.
var entry = searchResult.firstEntry();
Retrieves the next entry in the search results list. Returns null if there are no more entries.
var entry = searchResult.nextEntry();
Copyright(c) 2011-2013 by Appcelerator, Inc. All Rights Reserved. Please see the LICENSE file included in the distribution for further details.