I have an application where there are 5 tabs, it is mandatory that they be followed in sequence. When the page starts the first tab occupied the entire window space (it looks like they are not tabs), when the continue button is clicked, aba1
is hidden and gives the place to aba2
, which also occupies the entire window. What I need is that when aba1
is hidden and aba2
appears, there is a link in the corner referencing aba1
, without being another tab. I'm using Kendo UI
. Code:
@(Html.Kendo().TabStrip()
.Name("Guia_TabStrip")
.HtmlAttributes(new { style = "border:none;" })
.Animation(a =>
{
a.Enable(true);
a.Open(o => o.Fade(FadeDirection.In).Duration(AnimationDuration.Fast));
})
.Items(items =>
{
items.Add()
.Text("01 - DADOS EMISSÃO")
.HtmlAttributes(new { id = "Guia_01_DadosEmissao_Tab" })
.Selected(true)
.Content(@<text> <br />
//restante do código
items.Add()
.Text("02 - ENVOLVIDOS")
.HtmlAttributes(new { id = "Guia_02envolvidos_Tab" })
.Selected(false)
.Content(@<text> <br />
What I want to know is if you have a link in that .Text ("02 - INVOLVED") to reference the aba1
that is 01 - Emission Data (I have the links ready, I just need to know how to put it in there)