How to dissociate element?

Im trying to change components from this differents elements (from same Tab), but if I change the components in one, they change in the other one. How can I make each element individual, so I can change components without changing the others?

Thanks

image


  • Create a new column in your table and number the rows: 1, 2 ,3, etc
  • Now go to your Collection component configuration and enable advanced actions
  • You need to change the default Item Click action, and make it a custom action with a separate conditional branch for each item.
  • Make the first item Show Detail Screen->This item, and make the rest Show New Screen->This item
  • This will give you your existing (default) screen for the first item, and each of the others will have it’s own independent layout that you can customise.
  • So your custom action will be something like the following:
    – If Item equals 1
    β€” Show Detail Screen β†’ This item
    – Else if Item equals 2
    β€” Show New Screen β†’ This item
    – Else if Item equals 3
    β€” Show New Screen β†’ This item
    – etc…
2 Likes

Thank you so much, it work perfectly.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.