I am working on web app using kendo.I need to disable/enable kendo combobox using kendo API but it's not working.
here's my code:
HTML :
<input tabindex="5" id="art" kendo-combo-box ng-model="a.b" k-options='airTypeOptions' class="isRequired displayMode" />
JQUERY :
$("#art").getKendoComboBox().enable(false);
You can get kendo widget reference without jquery, change your html code like this
and this is a sample script to disable it by angular way
Demo