I have the following:
<h:form id="form" >
<h:panelGroup>
<h:selectBooleanCheckbox value="#{item.value}">
<f:ajax listener="#{bean.test()}" execute="@this" render=":form:modes"/>
</h:panelGroup>
<rich:collapsiblePanel id="modes" header="Show/hide" switchType="client">
........
</rich:collapsiblePanel>
</h:form>
But I get an error saying contains an unknown id ':form:modes' - cannot locate it in the context of the component. I have also tried doing render=":modes" but I get the same error.