Hi! > i am working with value change listeners. > while i am submiting the form again that value change listeners are > fireing > please tell how to avoid fireing of value change listeners when > i am submiiting the form > What are you trying to do?
There is no way to disable valueChange listeners. In all cases you submit a form and so how should JSF know that you dont want them to be fired. If it is possible to decide, you can place on top of your value change method a simple if (disabled) return; Ciao, Mario

