Hello,
I'm currently trying to implement different scenarios with the tab list. However, I've encountered the following issue:
The goal is to create a tab list as a component and navigate to the next tab item using a 'Next' button. The button is not part of the component.
I created an Input for the Tab Items: ('01_TabItems')
Table(
{
Titel: "Item1"
},
{
Titel: "Item2"
},
{
Titel: "Item3"
},
{
Titel: "Item4"
},
{
Titel: "Item5"
}
)
To address any tab item, I've created another input variable and initially set it to 'Item3' by default. (05_NEW_SelectedItem)
"Item3"
The DefaultSelectedItems is set to:
LookUp('Tab-Struktur'.'01_TabItems', Titel = 'Tab-Struktur'.'05_NEW_SelectedItem')
The mentioned item is now displayed twice.
Does anyone have an idea why it's behaving like this? Or a general approach how I can navigate within the tab list component via an external button?
Thanks