Events Overview
This article lists the clients-side events of the RadMultiColumnComboBox and how to use them.
All events follow the MS AJAX client events convention and receive two arguments:
sender- the RadMultiColumnComboBox instance that raised the eventevent arguments- event-specific data provided to the developer
RadMultiColumnComboBox is a wrapper over the Kendo UI MultiColumnComboBox widget and so it exposes the client events and data it does. You can find a list below.
The event data is wrapped according to the MS AJAX conventions and the fields you can see in the underlying Kendo Widget are avaliable through a method like
get_<fieldName>()in theevent argumentsargument of the handler (that is, the second argument the event handler receives). To cancel an event, you must call itsargs.set_cancel(true);method.
The exceptions are the OnInitialize and OnLoad events that are specific to the MS AJAX framework.
Listing 1: The client-side events exposed by RadMultiColumnComboBox
-
OnCascade—Fired when the value of the widget is changed via API or user interaction. Cancellable.
-
OnChange—Fired when the value of the widget is changed by the user.
-
OnClose—Fired when the popup of the widget is closed. Cancellable.
-
OnDataBound—Fired when the widget is bound to data from its data source.
-
OnInitialize