I have a container inside my view. which has title in it.
I need to add another container in it which will fetch values from another table.
It will have the same title field.
Can I filter data in the container to have same title values?
Meaning I want the First title “Priya” to be mapped to Title “Priya” in the second container. And it should only show the ones with title “Priya” from both tables
No, in app search and filtering are linked to thebl individual collections. You can’t share the same title search and filter across multiple collections. But if your entire screen is linked to information about Priya, wouldn’t just set a filter on each collection based on the information from the screen? Or create relations in your screen table to each other table that has data for Priya.
I take in date from table 1 which has Opportunity name. → I click on it it goes to show the detail in the detail screen.
In the detail screen ill add a collection which will show data from another table with name conversation → which has the same opportunity name but there are other different columns in that table.
I need to Match the opportunity name in Detail screen and show only same opportunity name data in the collection I have added in detail page Data pointing to other table called conversation
Yeah, you can either filter the conversation collection based on values in the opportunity table row you are viewing, or you can create a relation from the opportunity table to the conversation table and then set the collection source to the relation.
If you are simply trying to filter rows based on the same opportunity, then either method above will be much better than trying to use the search or filter on the collection title.
Which part? Am I making the correct assumption that when viewing the detail screen for Priya in the Opportunity table, all of your collections (including the Conversation collection) should only show data related to Priya? You can use a Relation as the source of the collection or use the Conversation table as the source and set a filter. I prefer to use relations.
Just open your Opportunity table, add a Relation column and use a common value that exists in both the Opportunity and Conversation table to link up and establish the relation. Then set that relation as the source of your Collection.