I am trying to make kable table reactive and export it in shiny app. already gave a try with renderDataTable
/renderTable
inside server and output functions as datatableOutput
/tableOutput
, but of no luck and following is the line of code.
output$tableset <- renderDataTable({
kable(spread_bole) %>%
kable_styling(font_size = 15 ,bootstrap_options = c("striped","hover", "condensed")) })
tableOutput("tableset")
Since kable
returns HTML, you can render your table using htmlOutput
in ui
and renderText
in server
:
# UI component
htmlOutput("tableset")
# server component
output$tableset <- renderText({
kable(spread_bole) %>%
kable_styling(
font_size = 15,
bootstrap_options = c("striped", "hover", "condensed")
)
})
Additionally, if you want to make it responsive to user input, you can wrap it in a reactive expression:
my_table <- reactive({
kable(spread_bole) %>%
kable_styling(
font_size = 15,
bootstrap_options = c("striped", "hover", "condensed")
)
})
# my_table() will call the cached table
This will be especially helpful if you want to use the same table multiple times. You can check out eventReactive
to trigger it with a specific input as well. Please refer here for more information on reactivity in Shiny: https://shiny.rstudio.com/articles/reactivity-overview.html