Greg Lin
Greg Lin
Hi, reactable doesn't support server-side rendering (https://github.com/glin/reactable/issues/22), so definitely continue using DT for that. As for a cross-table of functionalities: I don't have anything like that, but I agree it...
Hi, I agree, and virtualized tables have been somewhere on my own wishlist for a while. I've seen that example in the React Table docs, but just haven't had time...
Hi, that's an interesting idea, and it does look convenient. Could you use tidyselect to select columns outside of reactable? I'm totally unfamiliar with tidyselect and just skimmed the vignette...
Have you seen the [Row selection Shiny example](https://glin.github.io/reactable/articles/examples.html#row-selection) on the Examples page? There's no live demo for that, but you can copy and run this minimal app in a console...
Hi, there isn't a way to do this in the current release version of reactable, but I've been thinking about adding something like a proxy to make this possible. In...
1. There wasn't, but I've added a `page` argument so you can change the current page like `updateReactable("mytbl", selected = 11, page = 2)` ([example](https://glin.github.io/reactable/articles/examples.html#update-a-reactable-instance)). 2. Love that idea, and...
There's a way to get the page size, but it's not easily accessible right now. That would be through the `rowClass`/`rowStyle` callbacks like: ```r reactable( iris, showPageSizeOptions = TRUE, rowClass...
This issue works for me. Nice catch, I've fixed that in https://github.com/glin/reactable/commit/9f05b906505a5b6d93f93bab0df98c6bc13535fc. I've also added a `getReactableState()` function to the development version: https://glin.github.io/reactable/reference/getReactableState.html You can use `getReactableState(outputId)` to get the...
I haven't seen any mentions of `display: block` on tables in Bootstrap specifically. But if `display: block` was added to get tables to scroll with `overflow: auto`, Bootstrap's way of...
Interesting question, I bet it's possible but have no experience with this. I did once see a reactable table on my local news channel's website, and they had included it...