Skip to main content

All Questions

Tagged with
0 votes
1 answer
179 views

R Shiny Add Icon To tag$button

I'm trying to render a table in R Shiny that has a name, file, or url with a download button column that opens a new tab based on the data in the row. I'm unable to have the htmltools tag show an icon ...
Curtis's user avatar
  • 181
0 votes
1 answer
78 views

Shiny reactable list object in tags$button on click

So I have a situation where I would like to use an object in a tag$button(). This is to work around the fact that the columns may change. It works on the first click and then stops working and the ...
A-A-ron's user avatar
  • 27
1 vote
1 answer
576 views

How to add an icon in front of specific column name of reactable

R Gurus, I am struggling with a unique problem with adding an icon in front of certain column names in a reactable. library(htmltools) library(dplyr) library(tippy) data <- as_tibble(mtcars[1:6, ],...
M.Qasim's user avatar
  • 1,867
0 votes
0 answers
612 views

Looking for a pretty way to create expandable rows for columns with a lot of text

I was hoping to make a table that has expandable rows that may stay open when toggled. I wanted to put the columns with long amounts of text as expandable row details. The problem is when I use "...
s.libes's user avatar
  • 59
2 votes
1 answer
1k views

How to style reactable cell background with custom grouping select

I have some data I'm trying to present using reactable. I am styling the background of cells based on the value. There are a number of groups in the data which are useful, but the groups themselves do ...
TrainingPizza's user avatar
1 vote
1 answer
804 views

R Shiny table how to format html code correctly in expandable rows

In my shiny app I display a table (reactable) with an expandable row. I would like to change the background color for certain words, therefor I use html spans. It works fine for the text in the ...
volfi's user avatar
  • 457