Hi Glide community! I’m working on a calendar event details screen and could use some guidance on a data flow challenge.
Current Setup:
- I have a details screen for calendar events (main table: Events)
- At the bottom, I’ve added a custom CSS card collection with 4 action cards (Go to Interview, Call Applicant, Text Applicant, Email Applicant)
- The card collection sources its labels and icons from a separate helper table I created specifically for this UI component
The Problem: The actions need data from the main Events table (phone number, email address, etc.), but since the card collection is sourced from my helper table, the actions can’t access that contextual information from the details screen.
What I’ve Tried: I thought about trying to put these details in the users table, but these individuals aren’t users yet as they’re applicants to the company.
Question: What’s the best way to “enrich” these card actions so they can access data from the Events table that’s powering the details screen? Should I:
- Use relations/lookups in my helper table to pull the needed data?
- Restructure how I’m building this card collection?
- Use a different approach entirely?
Any suggestions on how to bridge this data gap would be greatly appreciated!
Screenshots: