Hi,
I'm using the RadTabStrip on a DotNetNuke (DNN) environment. Is it possible to hide the child tabs (subpages) from the RadTabStrip with a property in the .ascx or client-side through JavaScript (I don't have direct acces to the code-behind file)?
Kind regards,
Stijn Vanderstraeten
edit: I forgot to mention I currently use:
I'm using the RadTabStrip on a DotNetNuke (DNN) environment. Is it possible to hide the child tabs (subpages) from the RadTabStrip with a property in the .ascx or client-side through JavaScript (I don't have direct acces to the code-behind file)?
Kind regards,
Stijn Vanderstraeten
edit: I forgot to mention I currently use:
.RadTabStrip_DNNTopMenu .level
2
ul
{
display
:
none
;
}
.RadTabStrip_DNNTopMenu .level
2
li a
{
display
:
none
;
}
.RadTabStrip_DNNTopMenu .level
2
li a.selected,
.RadTabStrip_DNNTopMenu .level
2
li a.selected:hover,
.RadTabStrip_DNNTopMenu .level
2
li a:hover
{
display
:
none
;
}