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
Not sure what 'Tab-Struktur'.'05_NEW_SelectedItem' is returning. But your default selected items expect something like this
{ Title: "Item3"}
'Tab-Struktur'.'05_NEW_SelectedItem' should return "Item3"
Thanks for your answer. I tried your solution approach. The item is no longer duplicated but Item 1 is now displayed as DefaultSelectedItem.
DefaultSelectedItem of Component:
{ Title: 'Tab-Struktur'.'05_NEW_SelectedItem'}
Component on screen:
your default selected items seems to be culprit here.
Try that as
{
Titel: 'Tab-Struktur'.'05_NEW_SelectedItem'
}
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473