本文介绍了最小化DropDownList框的大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个DropDownList,其中显示了至少100个详细信息.
但DropDownList的OnMouseOver一次只能显示10个倾斜,并且应该具有一个垂直滚动条,以便最终用户可以使用滚动条来选择该特定值
在此先感谢
问候
Sushil Dharmar
I have a DropDownList which shows at least 100 details.
but OnMouseOver of DropDownList it should display only 10 recrods at a time and it should have an Vertical Scroll Bar so that the End user can use Scroll Bar in order to Select that specific Value
Thanks in Advance
Regards
Sushil Dharmar
推荐答案
<asp:DropDownList ID="DropDownList1" onmouseover="this.size=10;" onmouseout="this.size=1;" runat="server">
</asp:DropDownList>
可以为您提供一些帮助,但可能无法涵盖全部内容.
希望这些对您有所帮助.
祝你好运,
OI
can help you a bit but may not cover it all.
I hope these are helpful.
Good luck,
OI
这篇关于最小化DropDownList框的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!