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.
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
my index page shows all of my events that have a start date today or later
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.