如何设置 dojo dropdownselect 的大小?

发布于 2024-12-05 10:09:12 字数 121 浏览 1 评论 0原文

我在页面中使用 dojox.form.DropDownSelect (不过滤选择)。但我无法限制下拉菜单的高度。我尝试使用 size、maxHeght 等,但下拉列表随着列表的增长而增长。

有什么办法限制高度吗?

I am using dojox.form.DropDownSelect (not filtering select) in my page. But I am not able to restrict the height of the dropdown. I tried using size, maxHeght etc. but the drop down leep growing as the list grows.

Is there any way to restrict the height?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

救赎№ 2024-12-12 10:09:12

我不知道是否已经有一种方便的、有记录的方法。您只是尝试猜测还是实际搜索了 API 参考?

如果没有,您可以尝试通过 Firebug 检查生成的 dom 结构。那里可能有一个 div 表格,您可以通过 css 规则限制高度。

#that_drop_down .class_of_the_convenient_div {
    height: 500px;
}

I don't know if there is a convenient, documented, way already there. Did you just try to guess things or did you actually search the API reference?

In case there is not you could try inspecting the generated dom structure through Firebug. There is probably a div ot table somewhere in there that you can limit the height via a css rule.

#that_drop_down .class_of_the_convenient_div {
    height: 500px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文