Hi There... I used icefaces 1.7.1, and i use ice:inputText with valueChangeListener like that :
<ice:inputText value="#{myBean.name}" valueChangeListener="#{myBean.nameChangedListener}"/>
In MyBean.java i have:
public void nameChangedListener(ValueChangeEvent event){
// test the new value : if it's ok continue but if it is not ok i need it to keep the old value.
// I know that the valueChangeListener invoked before the old value is replaced by the newValue, is it ok?, and if ok : what to do to keep the oldValue if the newValue is worng
}
Thanks again for any Help.....