You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TableTh has prop tooltip of type React.ReactNode with desctiption:
Tooltip to show on the header cell. Note: If the header cell is truncated and has simple string content, it will already attempt to display the header text. If you want to show a tooltip that differs from the header text, you can set it here. To disable it completely you can set it to null.
Unfortunately supplying the tooltip prop to the Th does not produce a tooltip.
How do you reproduce the problem?
Simply add tooltip="something" to any of the examples in the PF docs page and observe that no tooltip is present on hover of the table header cell.
Expected behavior
Expected a tooltip to be present.
Is this issue blocking you?
Not blocking.
Workaround is to wrap Th with a Tooltip.
Not ideal that the workaround points the tooltip at the cell instead of the contents when it's a checkbox:
The text was updated successfully, but these errors were encountered:
Describe the problem
https://www.patternfly.org/components/table#th
Table
Th
has proptooltip
of typeReact.ReactNode
with desctiption:Unfortunately supplying the
tooltip
prop to theTh
does not produce a tooltip.How do you reproduce the problem?
Simply add
tooltip="something"
to any of the examples in the PF docs page and observe that no tooltip is present on hover of the table header cell.Expected behavior
Expected a tooltip to be present.
Is this issue blocking you?
Not blocking.
Workaround is to wrap
Th
with aTooltip
.Not ideal that the workaround points the tooltip at the cell instead of the contents when it's a checkbox:
The text was updated successfully, but these errors were encountered: