I created an activity feed and users have multiple ‘data things’ for tasks, file uploads, notes etc.
I want to let users click the row and see the details in a popup but can’t figure out how to dynamically set the content type of the popup to get the proper record.
Right now I store the ‘thing type’ (for example, ‘note’, ‘task’ etc) and the unique record id of that thing and was thinking I could set the data for the popup to search for that ‘thing’ based on the unique record ID.
It’s basically like a CRM activity feed that allows you to deep link or see details of all of the sub-objects.
Would I be better off just passing that ID to a dedicated details page? IE: on click, go to “task details page” and send the unique ID to it?