How to send different types of data to the same page

Hi everyone,
I’m having a trouble figuring out if I can send different types of data (page content type) to the same page.

I’m building an app with 2 data types User and Claim. Every user has got a claim, the two are correlated.

Now, I have a dashboard (dashboard-p). In that dashboard page, I want to display the Claim details, so the type of content is Claim. But I also want to allow users to edit their profile through clicking on the settings tab. However, I can’t send any of their details to the page to be edited, as the dashboard-p is set to Claim.

How do you go about this? Do I nee to create separate page (dashboard-p-user) that has content type User? Thanks for your time!

A page can only have one type of data, but each element on the page can have it’s own type of data.

If the Claim data is linked to the User data, then you can just set the data type for the dashboard to Claim, and the source to the current page User’s Claim.

2 Likes

Thanks dude! I wasn’t aware that I can do that. :upside_down_face:

2 Likes