Hey everyone,
We’re using a Tabset inside a Wizard. The issue is as follows:
Let’s say we have 3 steps in the wizard. Step 2 contains a Tabset with the Tabs “TAB1” and “TAB2”.
As you know you can go back to revisit a wizard step. Every time we revisit the second wizard step the tab label is concatenated. So it works like this:
First visit, the tab names are:
TAB1 and TAB2
Second visit:
TAB1TAB1 and TAB2TAB2
Third visit:
TAB1TAB1TAB1 and TAB2TAB2TAB2
and so on…
here’s a simple test page:
<skuid__page unsavedchangeswarning=“yes” personalizationmode=“server” showsidebar=“true” showheader=“true”>
<skuid__wizard uniqueid=“sk-3MC_-1192”>
<skuid__tabSet uniqueid=“sk-3MD0-1649”>
<skuid__tabPanel name=“TabName”>
</skuid__tabPanel>
</skuid__tabSet>
</skuid__wizard>
</skuid__page>
Any ideas for a JS script or something to fix this?
Thanks