KaxTabSelectParents Method |
Selects recursively all parent tabs in the hierarchy.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic void SelectParents()
public:
void SelectParents()
member SelectParents : unit -> unit
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();
}
Dim currentTab as KaxTab = KaxTabControl1.FindTabByUrl(Request.Url.PathAndQuery)
If Not currentTab Is Nothing Then
currentTab.SelectParents()
End If
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also