RadMenu for ASP.NET AJAX

RadControls for ASP.NET AJAX

The server-side ItemClick event occurs when the user clicks on a menu item, causing a postback.

The ItemClick event handler receives two arguments:

  1. The RadMenu that contains the clicked item. This argument is of type object, but can be cast to the RadMenu type.

  2. A RadMenuEventArgs object. This object has an Item property that you can use to access the item that was clicked.

Use the ItemClick event handler to respond when the user clicks an item in the menu.

 

See Also