Occurs on the server when a menu item in the
KaxMenu
control is clicked.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public virtual event KaxMenuEventHandler ItemClick
Public Overridable Event ItemClick As KaxMenuEventHandler
public:
virtual event KaxMenuEventHandler^ ItemClick {
void add (KaxMenuEventHandler^ value);
void remove (KaxMenuEventHandler^ value);
}
abstract ItemClick : IEvent<KaxMenuEventHandler,
KaxMenuEventArgs>
override ItemClick : IEvent<KaxMenuEventHandler,
KaxMenuEventArgs>
Value
Type:
Kettic.AspNet.ControlsKaxMenuEventHandlerRemarks
The menu will also postback if you navigate to a menu item
using the [menu item] key and then press [enter] on the menu item that is focused. The
instance of the clicked menu item is passed to the MenuItemClick event
handler - you can obtain a reference to it using the eventArgs.KaxMenuItem property.
See Also