Hi, as the subject says, we'd like to hide just the tabs, not the content area.
We are migrating from UltraWebTab and we acheived this by following the directions in this post:
http://news.infragistics.com/forums/p/8684/34286.aspx
Is it possible with the WebTab control?
Thanks.
Thanks for the reply, but I found the property I was looking for, VisibleHeader.
Hello naspence ,
Thank you for posting in our forums
Using WebTab you can achieve this using the Css class of the ContentTabItem.
<style type="text/css">
.newClass
{
visibility: hidden !important;
display: none !important;
}
</style>
<ig:ContentTabItem runat="server" Text="Tab 1" Key="First" Hidden="false" >
<TabCssClasses CssClass="newClass" />
<Template>
<asp:Label ID="Label1" runat="server" Text="Tab 1"></asp:Label>
</Template>
</ig:ContentTabItem>
Let me know if you have further questions