My code in JSp page
<h:dataTable value="#{manageBean.users}" var="usersData" border="0" cellspacing="0" cellpadding="0" headerClass="HEADING" rowClasses="evenrow,oddrow" width="450">
<h:column>
<f:facet name="header"/>
<h:selectBooleanCheckbox id ="user" value="1"/>
<h:outputText id="firstName" value="#{usersData.firstName}"/>
</h:column>
</h:dataTable>
With the above code i am able to generate the check boxes for the number of rows, but using java script i want to knwo which check box is selected. please need some info about it.
thanks and regards
Mruthyunjaya