-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Table] IconButton's Tooltip is hidden #5912
Comments
@ffxsam I was able to work around this by applying styling to the call to fix the overflow. Not ideal but it works for now. |
@patrickml Would you mind sharing what you did to fix it? I tried applying a really high z-index to the tooltip but it didn't work. |
{
style: { overflow: 'visible', textAlign: 'right' },
} |
I got it fixed by adding style={ { overflow: 'visible' } } to the TableRowColumn that IconButton resides in. |
Same problem. Adding |
Hello. Working example: <Table wrapperStyle={{overflow: 'visible'}} bodyStyle={{overflow: 'visible'}}>
<TableHeader>
<TableRow>
<TableHeaderColumn>i'm column header text</TableHeaderColumn>
</TableRow>
</TableHeader>
<TableBody>
<TableRow>
<TableRowColumn style={{overflow: 'visible'}}>
<IconButton
tooltipPosition="bottom-right"
tooltip="Do U see me?">
<CheckIcon/>
</IconButton>
</TableRowColumn>
</TableRow>
</TableBody>
</Table> |
Closing for #2230 |
Unfortunately this workaround fixes the tooltip issue, but causes problems with overflowing text in columns. Unless your data is going to match the size of your column exactly this will not work for you. |
When trying to view an IconButton's tooltip while contained in a table cell it seems to be hidden by an overflow of some kind.
The text was updated successfully, but these errors were encountered: