KaxMenuOnClientLoad Property |
Namespace: Kettic.AspNet.Controls
If specified, the OnClienLoad client-side event handler is called after the menu is fully initialized on the client.
A single parameter - the menu client object - is passed to the handler.
This event cannot be cancelled.
<script type="text/javascript">
function onClientLoadHandler(sender)
{
alert(sender.get_id());
}
</script>
<kettic:KaxMenu ID="KaxMenu1"
runat= "server"
OnClientLoad="onClientLoadHandler">
....
</kettic:KaxMenu>