DevExtreme jQuery/JS - Get a Widget Instance
To get a UI component instance, save it in a scope property once the UI component is initialized:
JavaScript
function Controller ($scope) { $scope.menuInstance = {}; $scope.menuOptions = { // ... onInitialized: function (e) { $scope.menuInstance = e.component; } }; }
Alternatively, you can apply techniques from the jQuery article.
See Also
Feedback