为kendo combo设置宽度而不使用其Id

时间:2013-12-29 14:25:22

标签: jquery html kendo-ui durandal-2.0 kendo-dropdown

我在durandal项目工作,想知道: 为kendo-ui组合框定义宽度的方法是什么?

我在链接Set kendo ui dropdownlist width看到了这个问题,但答案对我不利,因为我不想使用组合ID。

(为什么没有简单的方法将它作为组合属性来做,就像你可以简单地定义它的高度一样?)

这是我的HTML代码:

   <input id="myCombo" data-bind=" value:'444',        
        kendoDropDownList: { dataSource: data,
        dataValueField:itemValue,
        dataTextField: itemText,
        value:selectedId,            
        }" />

1 个答案:

答案 0 :(得分:1)

我猜没有width选项,因为窗口小部件默认为输入的宽度,因此对于典型的用例,不需要单独指定宽度。如果您想为下拉列表容器的宽度设置单独的选项,则只需创建自己的窗口小部件即可读取listWidth选项:

(function ($) {
    var ui = kendo.ui,
        DropDownList = ui.DropDownList;

    var CustomDropDownList = DropDownList.extend({
        init: function (element, options) {
            DropDownList.fn.init.call(this, element, options);

            if (options.listWidth) {
                this.list.width(options.listWidth);
            }
        },

        options: {
            name: 'CustomDropDownList'
        }
    });

    ui.plugin(CustomDropDownList);
})(jQuery);

然后您可以像这样使用:

$("#c2").kendoCustomDropDownList({
    dataTextField: "text",
    dataValueField: "value",
    listWidth: 400,
    dataSource: [{
        text: "Item1",
        value: "1"
    }, {
        text: "Item2",
        value: "2"
    }]
});

如果要以声明方式声明listWidth,可以使用类似这样的init方法:

init: function (element, options) {
    options.listWidth |= $(element).attr('data-list-width');

    DropDownList.fn.init.call(this, element, options);

    if (options.listWidth) {
        this.list.width(options.listWidth);
    }
}

并使用如下:

<input data-role='customdropdownlist' data-list-width="150"/>

演示here