我想没有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"/>
演示在这里。