Route-Based Filtering with URLSegments Not Working in Budibase 3.8 (Table Data Not Displaying) #15992
-
Hi Budibase Experts, I’m nhew to Budibase and building a dashboard app using Budibase 3.8 and running into a major issue with dynamic routing and filtering. What I'm Trying to Do
What’s Not Working
What I’ve Tried
Additional Observations
What I Need Help With
I’ve gone through several threads and followed multiple suggestions from the community and ChatGPT, but haven’t been able to get this to work. Any help or working example would be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @asadcs You seem to be trying to navigate to page that doesn't exist. But I can see your screens list here doesn't contain that: Lets go back to the start - I've got an example here that I'll work with, but you can apply these principals to your app. I've got the Budibase sample table "Inventory" displayed in a table here. I also added a button "Navigate to Row" Notice that I also have a screen /item/:item_ID I've passed the Item ID into the URL of the navigate-to action, in place of :item_ID Next, when I head to my screen /item/:item_ID I can see in the "General" settings an additional option - Set temporary URL variables for design preview I know that Item IDs are just numbers 1-10, so I can pop a 1 in here. I can then see this reflected in the Bindings list on the left On my screen, I've also got a table showing the Inventory table, but I'll add a filter to it. Clicking the ⚡ Lightning bolt here will allow me to specify one of the Bindings. And reflected in my table is a single row, with an item_id of 1 Please remember to check the documenation for this sort of thing - paths such as this are frequently covered there. |
Beta Was this translation helpful? Give feedback.
Hey @asadcs
You seem to be trying to navigate to page that doesn't exist.
You're navigating this page:
But I can see your screens list here doesn't contain that:
Lets go back to the start - I've got an example here that I'll work with, but you can apply these principals to your app.
I've got the Budibase sample table "Inventory" displayed in a table here. I also added a button "Navigate to Row"
Notice that I also have a screen /item/:item_ID
I've passed the Item ID into the URL of the navigate-to action, in place of :item_ID
Next, when I head to my screen /item/:item_ID I can see in the "General" settings an additional option - Set temporary URL variables for design preview
I know th…