I think I just need some simple Javascript in the where parameter "Add Javascript".
But all that I've tried has not worked.
Here's what I am trying to do:
I have a collection: "Athletes" and have set up the Query service and mapped the results to a list "athlete_List"(my List service works so I know my mappings are good and should be the same for the Query Service).
Columns in Athletes collection:
raceID | Name | Email
On transition from page1 to page2 I store a local variable "raceIDLocalVar". Which matches one of the raceID's.
In page2 in the "athlete_List" I want something like:
Javascript pseudo code:
If raceID of Athletes matches raceIDLocalVar
then
return the Name
Thanks...