剑道淘汰赛下拉列表更改事件未触发

Posted

技术标签:

【中文标题】剑道淘汰赛下拉列表更改事件未触发【英文标题】:Kendo knockout dropdownlist change Event not firing 【发布时间】:2014-03-01 03:12:42 【问题描述】:
<input data-bind="kendoDropDownList:  data:$root.brands,
                                       value: BrandID,
                                       dataTextField: 'Name',
                                       dataValueField: 'BrandID',
                 event:  change: $root.saveItem " />

有谁知道如果这是在剑道窗口内,为什么不会触发更改事件??

我正在使用 knockout-kendo.js。

【问题讨论】:

【参考方案1】:

对于变更事件触发

<input data-bind="kendoDropDownList: data            :$root.brands,
                                      value           :BrandID,
                                      dataTextField   :'Name',
                                      dataValueField  :'BrandID',
                                      change          :$root.saveItem"/>

Here is sample of change event firing

【讨论】:

以上是关于剑道淘汰赛下拉列表更改事件未触发的主要内容,如果未能解决你的问题,请参考以下文章