1

我在 emberjs 中有下拉列表,我在下面声明它

{{view Ember.Select contentBinding="ResAdmin.adminController.serviceAreaList"        selectionBinding="ResAdmin.adminController.serviceAreaSelection"                                 optionLabelPath="content.ZipCode"     optionValuePath="content.ServiceAreaID"}}

但我想使用 kendo ui 的下拉列表,我可以像下面这样使用

<input id="dropDownList" />
$(document).ready(function() {
    $("#dropDownList").kendoDropDownList({
        dataTextField: "text",
        dataValueField: "value",
        dataSource: [
            { text: "Item1", value: "1" },
            { text: "Item2", value: "2" }
        ]
    });
});

我想在 ember 中使用 kendoui 下拉列表

4

1 回答 1

0

wycats 的 jqueryUI 示例一样尝试

App.KendoSelectView = Em.Select.extend({
    didInsertElement: function () {
        this.$().kendoDropDownList({
            dataTextField: ....
        });
    }
});

您可能可以从选择属性中选择 DDL 的属性。

于 2012-05-14T03:16:09.730 回答