I'm having a problem, I wanted to add a tooltip
or hint
by hovering over the edit, confirm, and cancel icon for roweditor
and celleditor
of Primefaces
.
I've researched and tried to use css but it did not work.
.ui-icon .ui-icon-pencil:hover {
content:"This is a hint";
background:yellow;
padding:.5em;
position:absolute;
top:0;
right:0;
opacity:.9;
}
Html edit button
<span class="ui-icon ui-icon-pencil"></span>
Confirm button html
<span class="ui-icon ui-icon-check"></span>
And cancel button
<span class="ui-icon ui-icon-close"></span>
Can you do it?
Thank you