Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
69 views

I would like an introduction using rintrojs that highlights a button that toggles between showing and not showing a conditionalpanel. If the conditional panel is not showing, when the intro gets to ...
Nate Hawkins's user avatar
0 votes
1 answer
247 views

I have an app where a certain tabPanel() must be initialised as disabled. Solutions seen elsewhere (e.g. Shiny: Disable tabPanel() using shinyjs) address the problem by disabling the tabPanel() after ...
dkarlez's user avatar
  • 31
1 vote
1 answer
260 views

Background I want to pass a dataset (iris in the below reprex) between modules. Once passed, I want to click a button to download the dataset. I'm not able to download the dataset. It's part of a ...
s-mabdurrazak's user avatar
1 vote
1 answer
60 views

In the Shiny App below, I have added a few buttons to my DT and with every click I would like to +/- 1 to the number column in the DT. This works, but when a button is clicked twice the second time it ...
Jochem's user avatar
  • 3,428
2 votes
1 answer
560 views

I have written a shiny app that presents different radio buttons to the user. Depending on the input, numbers will be added to a score/counter and other radio buttons will pop up (and the previous ...
ava's user avatar
  • 1,026
0 votes
2 answers
325 views

After looking at some exisiting solutions I still could not solve the problem. I want to delete every data that was uploaded in my shiny app after pressing the sign_out button (which of course also ...
user avatar
2 votes
1 answer
56 views

I'm building an app which includes embedded video and audio files. I've got action buttons that let users navigate forwards, but I need them to be greyed out until the embedded video/audio is complete....
Casper's user avatar
  • 33
3 votes
1 answer
221 views

I have a short and seemingly naive question : How can I detect that fileInput button has been clicked, even if no file is selected ? Indeed, I would like to do something in observeEvent when a ...
Erica Fary's user avatar
0 votes
1 answer
347 views

I've been delving into Shiny modules, and so far, everything has been going well. However, I'm having trouble manipulating inputIds that come from another module. Specifically, I want to use functions ...
iferdel's user avatar
  • 25
1 vote
1 answer
133 views

What is the best way to disable all inputs while the server is busy computing? I have several inputs whose changes trigger small computations and the rendering of an output. Usually everything works ...
moremo's user avatar
  • 357
1 vote
0 answers
97 views

I have a Shiny app in which a pickerInput() is updated based on the value selected in another pickerInput(). library("shiny") library("shinyWidgets") ui <- fluidPage( shinyjs:...
Wil's user avatar
  • 3,228
1 vote
0 answers
400 views

I am trying to develop a shiny webapp where users can scan the QR codes from their mobile phones. I have written the below code for scanning the QR codes using javascript and shiny. The code is ...
Hrx's user avatar
  • 11
1 vote
1 answer
556 views

I'm making a ShinyApp that uses plain HTML to order clickable <div> sub-elements inside another <div> element. I want the click event on the sub-elements to trigger a reactiveVal() in my ...
Cris's user avatar
  • 335
0 votes
0 answers
402 views

I am looking for some help please to develop a solution to return the filtered rows in a reactable table in a Shiny app module. I am looking to identify which rows are the subset of mtcars after the ...
CallumH's user avatar
  • 789
0 votes
1 answer
49 views

given a verbatimTextOutput("consoleOutput") in the ui of a shiny app, what is needed to redirect the console log output to the verbatimTextOutput, autoscroll to the bottom when a new message ...
Dev Nocz's user avatar
0 votes
1 answer
105 views

I am using the fullPage package to create a Shiny App and I am facing the following issue : I would like to update from the server side the labels of the menu that are first defined in the pagePiling ...
mazu's user avatar
  • 327
1 vote
0 answers
93 views

I have created a form with Jotform that I would like to embed in my R Shiny App. Using shinyjs (?), I would like to access the information filled in the form by the user for using it somewhere else in ...
mazu's user avatar
  • 327
1 vote
1 answer
55 views

The new name value is not getting set after the reset when "Fill example name" is hit library(shiny) shinyApp( ui = fluidPage( shinyjs::useShinyjs(), shinyjs::inlineCSS(list(.big = ...
Jeremy Leipzig's user avatar
2 votes
1 answer
118 views

I have created the following App using R Shiny library(shiny) library(rhandsontable) library(shinyjs) ui <- fluidPage( sidebarLayout(sidebarPanel = "Inputparameter", ...
Raghavan vmvs's user avatar
1 vote
1 answer
123 views

I try to collapse a box with an action. This code works in shinydashboard how should I change jscode for doing same thing in bs4Dash ? Any idea? library(shiny) library(shinydashboard) library(shinyjs) ...
Ugur Dar's user avatar
  • 110
1 vote
1 answer
79 views

In this shiny App (code below), I need that the button labeled 'Customized' returns: Select var X: disp Select var Y: drat Point size: 1.0 This necessity is a bit similar to the reset button ...
Hassan Camil David's user avatar
0 votes
1 answer
180 views

I am having a shiny app with some ui elements. Is there a way to replace some HTML (e.g. div / div content) with an animation effect, similar to what shinyjs::show(anim=T) does? library(shiny) library(...
wati's user avatar
  • 310
1 vote
1 answer
107 views

In the shiny app below I have a selectInput() in which I want only the choices to be displayed but it will not be possible to select another one of the choices than the selected one. In a few words I ...
firmo23's user avatar
  • 8,546
0 votes
1 answer
101 views

In my flexdashboard code, what I am trying to do is: initially, no radio button is selected, and there are two options only option (radio button) one is to upload the data, option two is to connect ...
LeMarque's user avatar
  • 783
3 votes
0 answers
109 views

I have a problem with shinyjs hide() and show(). I use this to hide and show different data anyalysis that can be choosen from a side bar. If I do one part of my code it works fine but when I hide() ...
Marina Ar's user avatar
2 votes
0 answers
234 views

I am simulating several clicks on an action button by doing javascript calls document.getElementById('btn').click(); in a loop. The issue is that the loop runs first to the end (say 3 times as in ...
Pavel Khokhlov's user avatar
2 votes
1 answer
591 views

why when Im using modules the clickable feature in my highchart treemap is not working. I tried this without module and worked well. Probably is something related no namespace, right , but I can not ...
JohnBones JohnBones's user avatar
0 votes
1 answer
31 views

This app shows a radiobutton choice between 3 lists : lower, upper, digit items To test it, save the following code below in a directory "shiny" and in an app.R file. Then launch R and type :...
Fabrice's user avatar
  • 455
1 vote
1 answer
530 views

I have built a simple Shiny App with a plotly drilldown chart. I want the Action Button to appear only when the plotly click event occurs (this is working), but then I want the Action Button to ...
Harry Kalsted's user avatar
1 vote
2 answers
601 views

I'm trying to use the shinyjs package to clear and disable an input field that has a default value in my shiny app. The clear/disable button seems to work. However, when I click submit, the default ...
Bei's user avatar
  • 130
0 votes
1 answer
118 views

I am trying to use visEvents() selectNode and deselectNode arguments from the visNetwork R package to run a javascript code that would collapse/uncollapse a Shiny box (within fluidRow) based on ...
Corentin Wicht's user avatar
3 votes
1 answer
2k views

I am using the shinyjs::runjs("Shiny.setInputValue(...)) command to get the innerText value of the 'calendar_renderRange' span of the toastui calendar widget. The command is working in a non ...
Pierrick Kinif's user avatar
0 votes
1 answer
463 views

I am trying to have an explanatory image and text box appear after a user presses an action button. Ideally, Id like the box to be centered and directly below the image without too much space in ...
Nova's user avatar
  • 628
0 votes
1 answer
238 views

I am using R leaflet and I added a custom button to the map using 'addEasyButton'. I have trawled any conceivable source and can not find a suggested way to create a mouse-hover label to pop up for my ...
Bernard v B's user avatar
1 vote
0 answers
92 views

Questions Why when I click the "Next" button and then return to the first screen using the "Back" button, the condition works and I can't go forward until I click in at least one ...
retlaw's user avatar
  • 39
3 votes
1 answer
69 views

I have this working app: It is a follow-up question of some previous questions: library(shiny) library(vtree) df <- tibble(A = c(rep("nature", 18), rep("not nature", 9)), B = ...
TarJae's user avatar
  • 80.2k
2 votes
1 answer
43 views

I've tried in many way but I can't find a solution. I've made an app for which some calculation are made according to some other number selected through the DT Selection funcionality. On this app is ...
Nicholas Marconi's user avatar
2 votes
1 answer
162 views

When playing a sound I would like to have the possibility to stop this with another button. Or when pressing the play button again, the playing of the sound should stop, and then played from the ...
WJH's user avatar
  • 581
0 votes
1 answer
219 views

How can I disable a downloadButton while server is busy rendering a Rmarkdown report? The ideal would be to make the button disable only while the server is busy rendering the report, if the server is ...
retlaw's user avatar
  • 39
0 votes
0 answers
95 views

I have a Shiny app that generates a PDF report given a user's input. Is it possible to either; Force the browser to open the downloaded PDF in a new tab (Firefox does this automatically, but for most ...
Chris437's user avatar
1 vote
1 answer
801 views

Is there way to adjust the width of a well panel as shown in the image below? At the bottom is the code, if the user clicks the "Delete column" action button a conditional panel renders ...
Village.Idyot's user avatar
0 votes
1 answer
24 views

In the code excerpt posted at the bottom, a well panel with embedded objects is rendered underneath the action buttons, when the "Delete column" action button is clicked. The well panel ...
Village.Idyot's user avatar
2 votes
2 answers
470 views

Here's a question for RShiny users. I have developed an application which has multiple routes on rendering UI, through action buttons, dropdowns and graph click events. My goal is to fully modularise ...
Ben_Kimpton's user avatar
1 vote
1 answer
100 views

In the below simplified code, I use shinyjs to jointly show and hide text and table output. The text output is "Test show/hide in JS", the table output is a portion of the Iris data. By ...
Village.Idyot's user avatar
1 vote
1 answer
760 views

I use the package shinyjs to allow the user to reload the page by clicking on "Reload the page" button in Tab 2 and I would like to stay on Tab 2 after reloading the page. But after ...
PrettyClose's user avatar
0 votes
1 answer
201 views

The below code allows the user to manually edit values in the table rendered via rhandsontable, and furthermore, add columns to the table. However, when a column is added via the "Add" ...
Village.Idyot's user avatar
0 votes
1 answer
54 views

I have the observers working correctly in Example 1 code below, whereby clicking the "Click to show" button renders text and "Click to hide" hides the text. I am trying to extend ...
Village.Idyot's user avatar
2 votes
1 answer
335 views

In the shinydashboardPlus() below I activate and deactivate the right sidebar ability based on the tab I use. The issue is that when Im in the 2nd tab I cannot hide the right sidebar by clicking on ...
firmo23's user avatar
  • 8,546
1 vote
1 answer
98 views

I have a disturbing problem with selectizeInput. Whenever I search for several key words, the words are cut or deleted completely. In the minimal example below, when I fill in "producer price&...
panuffel's user avatar
  • 704
2 votes
1 answer
314 views

I have a rather large table, that if I fit it into the DT table and do a PDF print on it, there will be portions of the column that will be cut off. Also, I wanted to adjust the size of the title when ...
Sunny League's user avatar

1
2
3 4 5
13