I'm currently working with Primefaces, I have a datatable component and I render some records. When I edit inline-edit some records, I want to avoid the customer to click at the header checkbox to select all checkboxes, I like the customer to check the boxes that he wants to use manually.
I'm able to use the datatable configuration:
<composite:datatable disabledSelection="#{bean.disabledSelection}">
If this condition is true, all my checkboxes are disabled, but I just need that the one located at the THead is disabled, like this screen:
Thanks for any help!