Is it possible to update a PrimeFaces component from javascript so that it would be force to refresh?
I am making an ajax save call using this button in a dialog. I
you can always do something like this (remove the showmessage id from your save button update attribute)
function handleSaveNewMember(xhr, status, args) {
...
jQuery("#myBtn").click();
}
EDIT But anyway in your current code , isn't the dialog being closed at the same time that the grwol being updated ?