I have a table similiar to this from primefaces showcase (second table - multiple selection with checkboxes): http://www.primefaces.org/showcase/ui/datatableRowSelectionRadioCheckbox.jsf
I'd like to add a little pop-up box (similiar to HTML title attribute) with info when I hover over one of the auto-generated checkboxes (the one in the header which selects all others). Checkboxes are generated by this line of code:
<p:column selectionMode="multiple" style="width:2%" />
Code above creates column with checkbox rows. Header row is a special checkbox which selects all other checkboxes. I want to add a onhover message like "clicking this will select all checkboxes" for example.
I've tried the following but nothing works:
titleattribute from HTML<p:toolkit>tag<p:overlayPanel>tag (the problem is it should be used on some elements inside p:column, for example text, but in my case there is no content in p:column - just generated checkbox)