我正在使用RichFaces 4.3.5,当我尝试在选项列表中选择一个带有键盘向上和向下箭头的选项时,选项焦点会改变,但滚动不会跟随。
例如,有20个选项,你可以看到10.我使用箭头并逐个传递。当我得到11º位置时,滚动不动,所以我看不到11º。
我不知道我是否足够清楚......但这也发生在richfaces展示中。
http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=pickList&skin=blueSky
尝试用键盘查看其他选项,滚动不会移动。
有谁知道如何解决这个问题?任何解决方法?
非常感谢你
这就是我正在使用的方式。
<rich:pickList value="#{filter.subItemsSelected}" listHeight="75" styleClass="#{filter.codigo} hide" addAllText="Adicionar todos" addText="Adicionar" removeAllText="Remover todos" removeText="Remover">
<f:selectItems value="#{filter.subItems}" var="sub" itemValue="#{sub}" itemLabel="#{sub.nome}" />
<f:converter converterId="filtroConverter" />
</rich:pickList>