Top "Shinyjs" questions

shinyjs is an R package that lets you perform common useful JavaScript operations in Shiny applications without having to know any JavaScript.

Shiny Dashboard - display a dedicated "loading.." page until initial loading of the data is done

I have initial loading of data from the DB in the server.R which takes a few seconds. Until this …

r shiny shinydashboard shinyjs
Restart Shiny Session

This seems like a very obvious question but I haven't found anything on the subject. How can I refresh a …

r shiny shinyjs
Page refresh Button in R shiny

I tried to implement a page refresh button following the link here. However when I tried deploying to shinyapp.io, …

r shiny shinyjs
Show/hide entire box element in R Shiny

I'm currently trying to find a way to hide/show an entire box() element (and everything inside) in R Shiny. …

r shiny shinydashboard shinyjs
Hide an element (box/tabs) in shiny dashboard

I have a shiny dashboard which has a just a single text box on the landing page. The user enters …

r shiny shinydashboard shinyjs
Possible to show console messages (written with `message`) in a shiny ui?

I don't understand R's message vs cat vs print vs etc. too deeply, but I'm wondering if it's possible to …

r shiny shinyjs
How to hide a conditional panel in Shiny?

How to hide a conditional panel in Shiny? Please, see the following example: library(shiny) ui <- fluidPage( actionButton("…

r shiny shinyjs
conditionally output different colored text in Shiny

I would like Shiny to print out some different color text depending on the size of a vector. I was …

r shiny shinyjs
show(), hide() usage from shinyjs, Shiny

I have a simplified version of a shiny application I developed. What I want is to be able to show …

r shiny hide show shinyjs