强制 RadComboBox 下拉方向

发布于 2025-01-03 06:32:03 字数 127 浏览 0 评论 0原文

用户希望 RadComboBox 的下拉窗口向上而不是向下,无论他们位于屏幕上的哪个位置。不知道为什么,但你将如何实现这一点?

注意:我有一个带有自定义模板的 RadComboBox,而不是默认实现。

谢谢。

Users are desiring that the drop down window of a RadComboBox go up instead of down, regardless of where on the screen they are. Not sure why, but how would you implement this?

Note: I have a RadComboBox with a custom template, not the default implementation.

Thanks.

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

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

发布评论

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

评论(1

久隐师 2025-01-10 06:32:03

您必须禁用屏幕边界检测。然后您可以将展开方向设置为“向上”,例如:

<telerik:RadComboBox runat="server"
    EnableScreenBoundaryDetection="false" ExpandDirection="Up" />

更新:看来这也可以在不禁用EnableScreenBoundaryDetection的情况下工作。

You have to disable screen boundary detection. Then you can set the expand direction to "Up", e.g:

<telerik:RadComboBox runat="server"
    EnableScreenBoundaryDetection="false" ExpandDirection="Up" />

Update: it seems this also works without disabling EnableScreenBoundaryDetection.

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