Greg Lin

Results 250 comments of Greg Lin

No, this isn't possible today. The `reactable(defaultExpanded = TRUE)` option could remove the need to expand rows, but there's no way to change the row grouping behavior. However, I've had...

Hi, just to clarify, are you asking about getting the current page data from Shiny (via `getReactableState()`)? If so, this isn't possible, but I can take it as a feature...

Hi, thanks for the suggestion. I considered it originally, but wanted to wait to see if it was going to be common enough to use. Since then, I've seen a...

Hi, by rotate, do you mean text wrapping? If so, you can disable/enable wrapping of long text like in this example: https://glin.github.io/reactable/articles/examples.html#no-text-wrapping. If not, could you provide an example or...

I have seen tidy.js before, but never thought about using it with reactable. Interesting, I do see how it could be useful for custom formatters or aggregate functions in reactable,...

You can drop NAs from the count using a custom aggregate function, like: ```r library(reactable) x

It's still not possible to drop rows from a group, but at least you can now customize the group value (https://github.com/glin/reactable/commit/1297d0cd28c1828bea8a9276d203715ac063b6f9). > * `colDef()` gains a `grouped` argument to customize...

Hi, can you double-check that reactable 0.3.0 or later is installed, and `packageVersion("reactable")` reports 0.3.0 or later? The error message `Error in colDef: unused argument (sticky = "left")` suggests that...

I think ideally, the table would disable all other checkboxes once 3 of them are checked. That would be the least awkward and most accessible way to restrict selection IMO....

Hi, thanks for the suggestion! React Table doesn't support table editing out of the box, but it wouldn't be too hard to at least add a simple, inline editor like...