- 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