I'm newbie in jsf/primefaces and I'm having a problem:
I have an input text value that is not being updating after clearing it. Example: the input has value="abc", I clear it, then when I subimit form the input value is still "abc"
<p:commandButton icon="ui-icon-save">
<p:ajax event="click" process="@this"
update="@this"
listener="#{myBean.save()}" />
</p:commandButton>