By doing this:
FacesContext.getCurrentInstance().addMessage(null,
new FacesMessage(FacesMessage.SEVERITY_INFO,msg.getMessageResourceWithParams("admini.client.search.save.ok",
new Object[]{clientOnSearch.getFirstName()+" "+clientOnSearch.getLastName()}),null));
I am only expecting to see the Summary on the interface since I put the detail set to null.
But it displays the same messsage twice, on the summary and details.
Client Bruno Laaaalapa was successfully added Client Bruno Laaaalapa was successfully added
On the xhtml I have:
<b:row>
<b:column>
<b:messages/>
</b:column>
</b:row>
Is anything missing on it ?
Thanks