rich:select on drop down jump to the currently selected item in list
问题 We are using rich:select for our drop down inputs. <rich:select id="select" value="#{controller.attrs.value}" > <f:selectItems value="#{controller.attrs.items}" var="foo" itemValue="#{foo}" itemLabel="#{foo.bar}" /> <f:ajax event="#{ajaxActionController.action}" render="input" /> </rich:select> Our problem is that when the drop down is triggered it always starts with the first element in the list. However we would like it to jump to the position of the currently selected item. 回答1: Not