KendoComboBox からすべてのリスト項目を取得しようとしています。
リストは、カスタム angularjs ディレクティブを使用して構築されています。
html
<input id="comboBox" />
sgComboBoxField ディレクティブ:
'use strict'; angular.module('sgComponents').directive('sgComboBoxField', ['sgComboBoxService', function(sgComboBoxService) { return { link: function (scope, element, attrs, ctrls) { var dropdownlist = element.find('#comboBox'); dropdownlist.kendoComboBox({ //various options needed to set up the combox (like datasource) obtained from service )}; // tried a breakpoint here in chrome but the items are not visible! } } }]);
私の質問は、コンボボックスが DOM にロードされたら、コンボボックスからすべてのリスト項目を取得するにはどうすればよいですか?