<h:panelGroup id="userPanel" >
   <ui:repeat value="#{searchView.userList}" var="user" rowKeyVar="index" >
     //other code   
     <h:commandButton value="test" action="#{searchAction.doFindUsers}"   >
        <f:ajax execute="@this" event="action" render="userPanel" />
    </h:commandButton>
   </ui:repeat>
When I use render inside the ui:repeat tag it is showing the following error
<f:ajax> contains an unknown id 'userPanel' - cannot locate it in the context of the component j_idt870
 
     
    