Hi,
I'm trying to run the QueryTask with a subset of the object IDs returned from the executeForIds result featureset. But the QueryTask result count is always more than the number of Object IDs passed if "where" clause is not used or the same as the executeForIds when "where" clause is used. In either case it isn't returning the requested data rows.
ArcGIS Server is 10 SP3 and Flex Viewer is 2.4.
The relevant piece of code is copied below:
query.where = "<where clause>";
query.outFields = ["*"]
query.objectIds = objectIdsArray.slice(startIndexObjectIDArrayInPage, endIndexObjectIDArrayInPage);
queryTask.execute(query);
Any help appreciated. Thank you very much.
Varma.