dears,
My issue is that I have a page that has many command buttons, and the issue is that once a button is clicked and an action is invoked the other command buttons don't work again, even the one I clicked, it doesn't work anymore, it's like only one action is possible per refresh! when I refresh the page again the issue starts over.
I read on the internet that setting ajax to false would fix it but it messed up my page.
sample of one of my buttons:
<p:commandButton
process="@this, name, selectedvalues"
update="@form, myTable" value="ADD"
action="#{ManageBean.add()}" oncomplete="PF('Dlg').close();">
</p:commandButton>
I use primefaces, and JSF ..