GWT 2.5.1 - 限制下拉列表中可见条目的数量 (ValueListBox)
GWT 2.5.1 - limiting the number of visible entries in a drop-down list (ValueListBox)
我正在使用 ValueListBox 为用户显示值列表 select。
我对该列表的问题是,对于 IE11,单击控件时其行为相当糟糕:
1. 列表显示在整个列表中(恕我直言,它应该正确显示而不是 在 当前 selection 下,这就是它使用 Google Chrome)
2.显示的条目过多(IE11显示30个,Chrome显示20个)。可能相关:Limiting the displayed height of a select drop-down
这是完全依赖于浏览器的行为吗?
很确定它不能用标准的 HTML <select>
项来完成,这就是 GWT 呈现 ValueListBox
的方式,但您可以尝试 Bootstrap select: http://gwtbootstrap3.github.io/gwtbootstrap3-demo/#select
(向下滚动到滚动前的可见项目)
我正在使用 ValueListBox 为用户显示值列表 select。 我对该列表的问题是,对于 IE11,单击控件时其行为相当糟糕: 1. 列表显示在整个列表中(恕我直言,它应该正确显示而不是 在 当前 selection 下,这就是它使用 Google Chrome) 2.显示的条目过多(IE11显示30个,Chrome显示20个)。可能相关:Limiting the displayed height of a select drop-down
这是完全依赖于浏览器的行为吗?
很确定它不能用标准的 HTML <select>
项来完成,这就是 GWT 呈现 ValueListBox
的方式,但您可以尝试 Bootstrap select: http://gwtbootstrap3.github.io/gwtbootstrap3-demo/#select
(向下滚动到滚动前的可见项目)