Often we need to update a form or a div and the component values are lost . To solve it you need use:
partialSubmit="true"
Full Example:
<p:selectManyCheckbox converter="genericEntityConverter"
value="#{value}"
layout="grid" columns="1">
<f:selectItems value="#{values}"
var="alt" itemLabel="#{alt.name}"
itemValue="#{alt}" />
<p:ajax event="change" process="@this" update=":form" partialSubmit="true"/>
</p:selectManyCheckbox>