Problem in Value Change Listener
HI,
I am having a problem in the Value Change Listener. Some times listener is not activated when we are changing the value. Because, it is retaining the old value. We want to know, how to over write the current selected value in the JSF life-cycle. Some where it is lost in the previous action we are doing th开发者_如何转开发e application. I just want to know how to over write the currently selected value.
BalusC explains a lot here: When to use valueChangeListener or f:ajax listener?
I suggest you add a <f:ajax>
to your component, or completely remove the ValueChangeListener and replace with <f:ajax listener="...">
.
精彩评论