<h:selectBooleanCheckbox value="#{searchView.allSelected}" onclick="toggleChecked(this.checked)">
<f:ajax execute="@this" event="blur" listener="#{searchController.selectRows}" />
</h:selectBooleanCheckbox>
I have a check box and I need to call a controller event on blur, is it the right way of calling the event through listener
I am getting error as does not have the property 'selectRows'