0

我有 2 个下拉列表级联。

我使用 MVVM。

用户故事:

  1. 从第一个 DDL 中选择值(自动启用第二个 DDL 并推送数据)
  2. 从第二个 DDL 中选择值
  3. 单击添加(在模型中的数据源中添加值字段)

这是工作。

我需要将第一个 DDL 更新为默认值(“选择...”)并自动禁用第二个 DDL,但第一个 DDL 是默认值。

这是怎么做的?

4

1 回答 1

0

第一个 DDL 有 ID = "myFirstDDL" 。然后

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 
于 2013-02-16T14:22:21.860 回答