hey! I'm working on building some parameterized pa...
# troubleshooting
l
hey! I'm working on building some parameterized pages, and then also linking to those pages with a table. Is there anyway to general links inside a table with <value> ? I can easily build a page with the links like this 👇 but when trying to put in a markdown fail, it doesn't render correctly.
Copy code
{#each east_conf as record}

[{record.team}](/teams/{record.team}): <Value data={record} column=avg_wins/> avg. wins, <Value data={record} column=elo_rating/> elo, _<Value data={record} column=win_finals_pct1/> chance to win finals_  

{/each}
b
Not with the default DataTable component but there will be very soon!
✔️ 1
🙌 1
l
I basically want to do
Copy code
| col 1 | col 2 |
|-------|-------|

{#each...}
b
@great-boots-39022
You could fall back to HTML to do so
But that's quite gnarly
😵‍💫 1
For navigation, we're working on making it easier to get to the pages you need.
We're considering a few things here. 1. Making it possible to drop links into tables 2. Adding a components that is more abstract, and needs one line of code to generate a navigation menu for users. Perhaps something like:
<LinkTable data={myquery} urlColumn=team url_prefix="/teams/">
I'm going to open an issue to track this!
l
awesome thank you!!
i think having something like that for product analytics, for ex, would be clutch, making it easy to navigate from product family -> subfamily -> item or what have you
💯 1