Click or drag to resize
KaxTabChildGroupCssClass Property
Gets or sets the Cascading Style Sheet (CSS) class applied to the HTML element containing the child tabs.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public string ChildGroupCssClass { get; set; }

Property Value

Type: String
The CSS class applied to the child tabs container. The default value is empty string.
Remarks
Tabs are rendered as LI (list item) HTML elements inside a UL (unordered list). The CSS class specified by the ChildGroupCssClass property is applied to the UL tag.
Examples

ASPX:

<kettic:KaxTabControl ID="KaxTabControl1" runat="server">
<Tabs>
<kettic:KaxTab Text="News" ChildGroupCssClass="news">
<Tabs>
<kettic:KaxTab Text="CNN" />
<kettic:KaxTab Text="NBC" />
</Tabs>
</kettic:KaxTab>
</Tabs>
</kettic:KaxTabControl>

HTML:

<li>News
<ul class="news">
<li>CNN</li>
<li>NBC</li>
</ul>
</li>

See Also