is there a way to pass default values to the Vertical Navigation component ?
I have vertical component.
NavItems:
Table(
{
Title: " Home",
ID: 1,
Icon: Icon.Home
},
{
Title: "Employee",
ID: 2,
Icon: People
}
)
onselect : Set(NavTabSelected,ThisItem.ID)
CurrentOption( Output property) : NavTabSelected
I wanted the Employee information ( Gallery) show up by default . Currently, it show up when the user select "Employee"( Gallery _ Visible : leftNavigation.CurrentOption=2)
Thanks