How do I access a collection row used on the previous page?
I'm working on a product catalog type app and I have the following issue (apologies in advance as I'm very new to this.)
I have one page with several thumbnail images for different products. Each one has a different "web_id" which is in a collection accessed via a service.
So my request parameter for example on the first item would be {"web_id":"1"} for the second {"web_id":"2"} etc...
When a user clicks on a thumbnail they would be taken to a product detail page for that "web_id" ... but that's where i am hung up.
How do i get that generic detail page to load the product details for {"web_id":"1"} that was clicked on?
any hep appreciated.