Click or drag to resize
KaxTabSelectParents Method
Selects recursively all parent tabs in the hierarchy.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public void SelectParents()
Remarks
Use this method to programmatically select all parents of the tab. Selected tabs will be visible in the browser.
Examples
The following example demonstrates how to select the parents of the tab which corresponds to the current URL.
KaxTab currentTab = KaxTabControl1.FindTabByUrl(Request.Url.PathAndQuery);
if (currentTab != null)
{
    currentTab.SelectParents();
}
See Also