1st data type: Item
Fields: Item name (Text), Description (Item Description)
2nd data type: Item Description
Fields: Item Description (Text)
What I want to happen: When a user clicks on a group that only displays the item name, a new tab will open and it will display the Item name and description.
My problem: I have a repeating group that displays the items name and when clicked, it opens a new tab with the item name but the item description does not pop up. I have selected for data to send “current cells Item” but cant seem to display the description.
How do I make it so that a the Item name and description are visible on the new tab?
Also, I have separated the item name from the description as the descriptions are really long and will slow down my app as a lot of item names are displayed in the repeating group.
That’s because you are sending current cell’s Item thing. You need to compose additional dynamic expression in your tab to find Item Description where Item = item you’ve sent to the tab.
When I try to add the item description it does not let me select the input item description as it says it is an incompatible type as shown in the picture.
You can’t add item description in step #1 because you are creating it only in step #2. So you need to add step #3 (modify result of step #1 and add item description) or change steps order - create item description at first and item in step #2 (item description = result of step #1).