Click or drag to resize
KaxNavigationBarOnClientLoad Property
Gets or sets a value indicating the client-side event handler that is called after the KaxNavigationBar client-side object is initialized.

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 OnClientLoad { get; set; }

Property Value

Type: String
A string specifying the name of the JavaScript function that will handle the event. The default value is empty string.
Remarks

If specified, the OnClienLoad client-side event handler is called after the navigationbar is fully initialized on the client.

A single parameter - the navigationbar client object - is passed to the handler.

This event cannot be cancelled.

Examples

<script type="text/javascript">
function OnClientLoadHandler(sender)
{
alert(sender.ID);
}
</script>

<kaxP:KaxNavigationBar ID="KaxNavigationBar1"
runat= "server"
OnClientLoad= "OnClientLoadHandler">
....
</kaxP:KaxNavigationBar>

See Also