RadControls for ASP.NET AJAX
The OnClientMouseOver client-side event occurs when the mouse moves over an item in the menu.
The event handler receives two parameters:
The instance of the menu firing the event.
An eventArgs parameter containing the following methods:
You can use this event to respond when the mouse is over an item:
CopyASPX
<script type="text/javascript">
function ShowItem(menu, args) {
var label = document.getElementById("Label1");
label.innerText = args.get_item().get_text();
}
</script>
<telerik:RadMenu ID="RadMenu1" runat="server" Flow="Horizontal" OnClientMouseOver="ShowItem">
<Items>
...
</Items>
</telerik:RadMenu>
<br />
<br />
<asp:Label ID="Label1" runat="server" Text=""></asp:Label>
See Also