|
|
@ -46,7 +46,7 @@ public partial class FormWizardStep
|
|
|
|
get
|
|
|
|
get
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return new CssBuilder("dot")
|
|
|
|
return new CssBuilder("dot")
|
|
|
|
.AddClass("completed",Completed)
|
|
|
|
.AddClass("completed", Completed)
|
|
|
|
.AddClass("next", Active)
|
|
|
|
.AddClass("next", Active)
|
|
|
|
.Build();
|
|
|
|
.Build();
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -62,7 +62,7 @@ public partial class FormWizardStep
|
|
|
|
get
|
|
|
|
get
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return new StyleBuilder()
|
|
|
|
return new StyleBuilder()
|
|
|
|
.AddStyle("display","none", (!Active && !IsNext && !IsPrevious)) //Workarround for more than 2 steps where steps didnt hide after
|
|
|
|
.AddStyle("display", "none", (!Active && !IsNext && !IsPrevious)) //Workarround for more than 2 steps where steps didnt hide after
|
|
|
|
.AddStyle(Style)
|
|
|
|
.AddStyle(Style)
|
|
|
|
.Build();
|
|
|
|
.Build();
|
|
|
|
}
|
|
|
|
}
|
|
|
|