Asp.NET下拉列表方向
是否可以使用标准 asp:dropdownlist 使列表向上而不是向下扩展,或者我是否需要创建自定义控件?
Is it possible with the standard asp:dropdownlist to make the list expand upwards instead of downwards, or do I need to create a custom control?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
到目前为止,我知道如果有足够的空间,标准下拉列表会向下扩展,否则它会向上扩展
所以答案是:您需要一个自定义控件:-)
So far I know the standard dropdown expand downwards if there is enough space to do it otherwise it expands upwards
So the answer is: you would need a custom control :-)
您将需要一个自定义控件。 ASP.Net 下拉列表只是基本 HTML 选择列表的包装。
如果您列出更多关于您需要该功能的内容/原因的详细信息,我们也许可以提供进一步的建议。
You'll need a custom control. The ASP.Net dropdownlist is just a wrapper for the basic HTML select list.
If you list some more details as to what/why you need that functionality, we may be able to provide further suggestions.