1

私はemberjsにドロップダウンリストを持っており、以下のように宣言します

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

でも、以下のように使える剣道UIのドロップダウンリストを使いたい

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

残り火でケンドウイドロップオーナーリストを使いたい

4

1 に答える 1

0

jqueryUIのwycatsの例のように試してください

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

おそらく、選択したプロパティから DDL の属性を取得できます。

于 2012-05-14T03:16:09.730 に答える