私はicefaces 1.7.1を使用し、そのようなvalueChangeListenerでice:inputTextを使用します:
<ice:inputText value="#{myBean.name}" valueChangeListener="#{myBean.nameChangedListener}"/>
MyBean.java には次のものがあります。
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
}
助けてくれてありがとう.....