how to realize the function only a validator is fired when submit
Sorry for my question.
In a web Page here are a inputText of a code ,a search button Searching by the Code , others inputText sand a 'OK ' button.
the question is how to fired a only 'code' validator when searching
--
I made the search button immediate="true" ,So I wanted to fire the code validator by actionListener, the others validator were not fired .
But in this way i find i can't get the code's number not only by binding
but also by value. so What shall i do?
the actionListener is this:
public void commandButton_search(ActionEvent e){
UIViewRoot UIroot=FacesContext.getCurrentInstance().getViewRoot();
UIComponent uicomponent=UIroot;
String strCode= (String)this.inputText1.getValue();
MemberValidator aValidator=new MemberValidator();
aValidator.searchAddressCheck(uicomponent,strCode);

