We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The hover styles on the table row suggest that the whole row is clickable, but only the hyperlink in the reference column will take you to the website
The text was updated successfully, but these errors were encountered:
Might be able to do this with a CSS trick similar to Bootstrap's stretched link https://getbootstrap.com/docs/5.0/helpers/stretched-link/
Sorry, something went wrong.
this is a reactable table, will need to look into how to do this: TanStack/table#206
Thanks to @jthomasmock I believe this is a possible solution:
tibble( x = 1:5, y = letters[1:5], url = rep("http://www.google.com", 5) ) %>% reactable( onClick = JS("function(rowInfo, colInfo, index) { window.open(rowInfo.row['url'], '_blank') } " ) )
No branches or pull requests
The hover styles on the table row suggest that the whole row is clickable, but only the hyperlink in the reference column will take you to the website
The text was updated successfully, but these errors were encountered: