I have 2 dropdownlist cascade.
I use MVVM.
user story:
it's work.
I need update first DDL to default value ("Select...") and automatically disable second DDL but first DDL is default..
How do this?
first DDL have ID = "myFirstDDL" . Then
var firstDDL = $('#myFirstDDL').data('kendoDropDownList');// kendo object
firstDDL.dataSource.read(); // re-new data from Your Server - if you need this.
firstDDL.select(0);//update first DDL to default value ("Select...") and automatically disable second DDL