A newer version of this page is available. Switch to the current version.

DevExtreme jQuery - Handle Events

You can subscribe to an event using a configuration property. All event handling properties are given names that begin with on.

HTML
JavaScript
<div dx-menu="{
    ...
    onItemClick: itemClickHandler,
    onInitializedHandler: initializedHandler
 }"></div>
function Controller ($scope) {
    $scope.itemClickHandler = function (info) {
        // Handles the "itemClick" event
    };
    $scope.menuInstance = {};
    $scope.initializedHandler = function (info) {
        // Saves the UI component instance
        $scope.menuInstance = info.component;   
        // Handles the "initialized" event
    }
}

View Demo

See Also
  • API Reference.WidgetName.Events, for example, API Reference.Menu.Events