I have an adf table in which the first column is checkbox.
<af:column id="rh1" width="20px" rowHeader="true">
<af:selectBooleanCheckbox id="rowSelectCheckbox" value="#{opcNotifyBlackoutsView.blackoutNotifyEventsTable.selectedRowKeys.contained}"
autoSubmit="true"
valueChangeListener="#{opcNotifyBlackoutsView.updateEventSelect}"/>
</af:column>
I need a single checkbox on top for select/unselect All for the below row checkboxes.
Thanks.