<h:selectBooleanCheckbox :: params>
i have a requirment where i need to send corresponding value when a particular checkbox is selected in a row from a table..i am using plain html table to render muliple rows with jsf components against datatable..
below is the checkbox i am using..each checkbox will have somethings like templateid..when a particular row is selected, i need that template id in bean. only 1 checkbox can be selected so i have small javascript for making checkbox as radio button..f:param does not work if i have as below..
<h:selectBooleanCheckbox styleClass="selectBooleanCheckbox" value="#{pc_TemplateMgmtLandingView.templateBean.templateId}" valueChangeListener="#{pc_TemplateMgmtLandingView.handleSelectBooleanCheckboxValueChange}">
<f:param name="tid" value="#{data.templateId}"></f:param>
</h:selectBooleanCheckbox>

