Get data from a link clicked

ok the challenge for me this evening, just looking for a high-level way to do this in Wappler

On my home page I have repeater card with events, I want the users to be able to click on 1 event and then go to an event page. Where the event page will have data about only that event.

I am sure there is a term for this, but I don't know what to call it.

Thanks for any help and insight.

What do you mean with that?

He wants a link to:
/event/123

And wants to build that page to see the event details (e.g. a music show)

And he wants to do this for his entire table/repeater:
/event/{id}

:blush:

This is exactly what I want to do

Add the Query Manager to your page. Inside the Query Manager 'Define Query Params' add your parameter.

Basic method:
Select your link in the Repeat. Then click on Dynamic Attributes / Link - Select your page and the Binding you are using for the parameter.

Using routing:
Firstly on the page holding the details you'll need to add the parameter to the route (in the routing panel):

somepage/:paramatername

Select your link in the Repeat. Then click on Dynamic Attributes / Link - Select your route and then select the binding to filter for the parameter.

On the server side be sure to add the parameter as a GET variable and a Condition to filter by it accordingly. This obviously goes for both of the above methods.

To avoid missing parameters in the Query Manager make sure APP ID's match.

Just can't seem to figure this out... I am sure I am missing something I just can't figure it out

Here is what I have so far

  1. my index page shows all of my events that have a start date today or later
  2. cards on my index page that show each of the events that meet with query above

After that I am lost

I am trying to use the title on the card as the link, that users will click on. once the click on the title it will take them to a single event page displaying the data.

Thanks for any deeper insight

Maybe this link to docs and video will help.

Thank you Brad, I will give this a try this evening.

Thank you @brad, @Cheese for pointing me in the right direction and for @Hyperbytes for the video.

2 Likes