剑道下拉宽度 [英] Kendo dropdown width

查看:72
本文介绍了剑道下拉宽度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以告诉我如何为剑道下拉菜单设置宽度吗?这是我的代码示例,它无法正常工作.那有什么问题吗?

Hi can someone tell me how to set width for kendo dropdown? Here is my code sample and it is not working. Anything wrong in that?

$("#div1").kendoDropDownList({
    dataSource: items,
    dataTextField: "Name",
    dataValueField: "Id",
    Width : "250px"
});

推荐答案

kendoDropDownList的配置没有属性宽度.参见此处: Kendo文档

The kendoDropDownList does not have a property width for it's configuration. See here: Kendo Docs

您可以做的是设置正确的班级样式. 既然您希望知道下拉菜单的位置,则可以指定选择器,使其不会应用于所有下拉菜单.

What you can do, is styling the correct class. Since you hopefully do know where your dropdown lies, you can specify the selector so it doesn't apply to all dropdowns.

#myContainer .k-dropdown {
     width: 250px;
}

这篇关于剑道下拉宽度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆