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