-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Description
Feature request
Hi Blueprint team,
I'm currently working on a Blueprint Table and need to add a Tooltip to the RowHeaderCell
text.
There is precedent for this in ColumnHeaderCell
via the nameRenderer
prop, however this functionality does not exist yet for the RowHeaderCell
.
If the approach from ColumnHeaderCell
can be repurposed here, I'm happy to submit a PR. This is a great UI library with a very thoughtful API.
Examples
<RowHeaderCell
name="Population"
nameRenderer={
(name, index) =>
<Tooltip content="The population as determined by the 2016 US Census">
{name}
</Tooltip>
} />