如何根据下拉列表中的选项验证输入文本框?
答案 0 :(得分:6)
您可以将下拉列表的选定值作为输入组件的属性传递,以便验证程序可以抓取它。
E.g。
<h:selectOneMenu binding="#{menu}" value="#{bean.item}">
<f:selectItems value="#{bean.items}" />
</h:selectOneMenu>
<h:inputText value="#{bean.input}">
<f:attribute name="item" value="#{menu.value}" />
<f:validator validatorId="inputValidator" />
</h:inputText>
与
@FacesValidator("inputValidator")
public class InputValidator implements Validator {
@Override
public void validate(FacesContext context, UIComponent component, Object value) {
Object item = component.getAttributes().get("item");
// ...
}
}
请注意,组件的排序很重要。 JSF按照它们在视图中出现的顺序处理UIInput
个组件。如果在输入文本组件后放置下拉组件,则需要将#{menu.submittedValue}
作为属性传递,但此时该值尚未转换。如果需要,可以使用<h:inputHidden>
解决方法,该{{1}}位于两个组件之后,并将验证器放在那里。