249 questions
3
votes
2
answers
62
views
Make reactable resizeable with minimal witdth of column header
I'm creating a reactable table which is resizeable. The problem is that some column names are longer and are not shown at first because of the table being resizeable. Here is some simple reproducible ...
1
vote
1
answer
34
views
Adding two button_extra() to one cell in reactable table in a Shiny app
Taking some inspiration from the answer to this questions: Add two links in the same cell of a reactable table?
I tried to put an example together of using two button_extra() from the reactable_extras ...
0
votes
1
answer
68
views
Call back reactable which included radio button by row
I am able to use DT table to create the table which contained three columns. I can call back the table to return the radio input. I am not sure how to call back in reactable. If anyone knows please ...
0
votes
1
answer
48
views
Change color of selected row in reactable
I have this Shiny app that displays a large table with reactable. I want to change the appearance so that the selected row gets a different color than the rest of the table. The code below works. ...
0
votes
1
answer
43
views
How to retain custom cell specification using updateReactable and isolate?
Following up on a previous question on reactable and shiny, I'd like to implement the page jumping in that question with the use of custom icons.
library(shiny)
library(reactable)
library(dplyr)
ui &...
2
votes
2
answers
56
views
How to jump to a reactable page upon modifying the underlying data?
I'm trying to use the reactable package to hop to a specific row index after a user modifies the data underlying the reactable.
library(shiny)
library(reactable)
library(dplyr)
ui <- fluidPage(
...
1
vote
1
answer
62
views
How to ignore NA when using icon_sets() in reactablefmtr package?
I'm wondering if it is possible to ignore NA values in a given column when applying the icon_sets() function from the reactablefmtr package in R.
In my very basic example below, the current code does ...
0
votes
0
answers
43
views
Dynamically show/hide columns in reactable table based on external range
I would like to show/hide columns dynamically in a reactable table using an external range. I'm aware that long format is preferred, but I need to have the data in wide format.
Here is my code so far:
...
4
votes
0
answers
200
views
How to use crosstalk, reactable, and plotly parcoords in R
I am trying to use reactable and plotly together with brushing. I would think something like this would work:
library(plotly)
library(reactable)
library(crosstalk)
library(dplyr)
# Sample data (iris ...
1
vote
1
answer
58
views
How to efficiently use pill_buttons() in reactablefmtr for multiple variables?
I have a data frame that contains ~15 variables of interest, and I'm aiming to conditionally fill the values based on some criteria using the pill_buttons() function in the reactablefmtr package.
The ...
1
vote
1
answer
73
views
Add a custom search field in reactable in R Shiny
I am developing an application in R Shiny that displays a table using the reactable package. I am trying to add a custom search field that searches all the columns in the table. Looking at Greg Lin's ...
2
votes
1
answer
127
views
Filtering data in reactable in R shiny. Reactivity and invalidatedLater
I have an R shiny app that works fine, but when I retrieve the data by pressing the ´Get data´ button all the components within the server function get executed twice, and I only want them to be ...
0
votes
1
answer
62
views
Reactable with footer works locally but not on Posit Connect
This app works locally, but not when deployed to the shiny server.
library(shiny)
library(digest)
library(reactable)
ui <- fluidPage(
mainPanel(
reactableOutput("rt")
)
)
server ...
0
votes
0
answers
46
views
Can reactable sort on rows?
I have a table in R that has the names of ML algorithms in the columns and features in the rows. The cells are holding the VIP variable importance rank if the algorithm used the feature. I would like ...
1
vote
2
answers
104
views
How to add a date picker to filter a date column in a reactable table in R Shiny?
I would like to display a reactable table in an R Shiny Dashboard where the records can be filtered by column. One of the columns is a date. I would like to use a date picker that appears when you ...