I have a list on which I am using <ui:repeat>
. How can I get the values of <p:rating>
of multiple selected rating option? When I used <p:selectManyCheckbox>
, it gives multiple selected values by itself.
How can I achieve the same in <ui:repeat>
?
<ui:repeat var="product" value="#{tInterests.categoryList}" >
<tr>
<td><h:outputText value="#{product.categoryValue}" styleClass="cellLabelMand"/>
<p:rating value="#{product.rating}" stars="10" cancel="true" /></td>
</tr>
</ui:repeat>