Questions tagged [shinybs]

ShinyBS is Twitter Bootstrap Components for Shiny.

It allows the developer to add Twitter Bootstrap functionality and interactivity to Shiny applications.

109 questions
0
votes
1 answer

bsModal works with fluidPage but not without it

I found the bsModal works as expected with fluidPage but not without it. Just click "View Table" button to see the difference. The version with fluidPage: library(shiny) library(shinyBS) shinyApp( ui = fluidPage( sidebarLayout( …
Liang
  • 403
  • 1
  • 5
  • 14
0
votes
0 answers

R Shiny - Editing a data table inside a dynamically created bsModal

The app below contains an actionButton Add data that inserts a UI element each time it is clicked. Each UI element is a box that contains one selectInput Select data and an actionButton Edit that opens a modal when clicked. Each modal contains: A…
user51462
  • 1,658
  • 2
  • 13
  • 41
0
votes
2 answers

including shinyBS in a package

When I build, load and run my own package, it is only using shinyBS functionalities if i beforehand load shinyBS with 'library(shinyBS)' otherwise tooltips are not working.. and although the shiny app works (whithout shinyBS features) there are…
tanovsky
  • 73
  • 5
0
votes
1 answer

Making multiple R shiny widgets appear in a popup

In the following R shiny code below, I am trying to embed two boxes aligned left and right with a selectInput widget above the left box and the entire thing appearing in a bsmodal popup when we click the Button. I am not able to get the desired…
Adam Shaw
  • 519
  • 9
  • 24
0
votes
1 answer

Inserting a pivot table inside a shinyBS popover in R shiny

The given R shiny script creates popoup based on clicking of a button in which the text is displayed. library(shiny) library(shinyBS) CR1_BS<-paste("i. This is line 1", "ii. This is line 2", "iii. This is line 3", sep = "
") …
Adam Shaw
  • 519
  • 9
  • 24
0
votes
1 answer

How to format/align text in shiny bsPopover?

I am new to Shiny r and trying to build an app. I am using bspopover to display a popover over a slider input. The text in the popover is split in multiple lines like pointers (see below) i. This is line 1 ii.This is line 2 iii. This is line 3 I…
WiseChirag
  • 187
  • 2
  • 9
0
votes
1 answer

Show/Hide bsCollapse panels in Shiny

I am building a Shiny App using ShinyBS and Shinyjs packages, and I would like to hide/show bscollapse panels depending on the input on a radio button in another bscollapse panel. When "AAA" or "BBB" option is selected in Parent1, I want to show…
ZedzDeD
  • 21
  • 4
0
votes
0 answers

Shiny: Conflict with Pop Up Message and Data Table

I am creating an app with a form for users to fill in with details, and press a "Submit" button: after which a row gets added to a data frame summarising the entered data. Each entry has a unique identifier, eg. Name. If a new submission is made,…
owen88
  • 454
  • 3
  • 12
0
votes
1 answer

Mathjax in a shinyBS alert

Is there a way to use MathJax inside an alert created by shinyBS? The attemp below does not work as expected. library(shiny) library(shinyBS) shinyApp( ui = fluidPage( sidebarLayout( sidebarPanel(textInput("num1", NULL, value =…
Stéphane Laurent
  • 75,186
  • 15
  • 119
  • 225
0
votes
1 answer

using click.dt with sliders to filter after a click not updating

Please run this code. You will see when you click on a row in the datatable the number from the "a" column is plotted. That's done using callback and observeEvent. That works fine. library(shiny) library(DT) runApp(shinyApp( ui = fluidPage( …
user3022875
  • 8,598
  • 26
  • 103
  • 167
0
votes
1 answer

R shiny app: How to address specific shinyBS buttons across several tabs?

I have started writing a shiny app. What I want to achieve is loading a text file with a string in one line - like this: $ cat testdata.txt hello world If the text gets loaded, the vowels are set to value 1 in the data frame and are highlighted…
Revan
  • 2,072
  • 4
  • 26
  • 42
0
votes
0 answers

Shiny checkbox input tracking

I am currently working on an application form using Shiny. My main page will consist of a table that will have a click button which will open a new modal window that will display the application form details. Once the save button is clicked the data…
0
votes
0 answers

Updating SelectInput, TextInput and Date in the modal window to previously set values if any for each row

I am currently working on a scenario where I have created a dashboard which has a datatable. The datatable has a click button which opens up a modal window pertaining to that row in the table. The modal window has a set of dropdowns, textinputs and…
0
votes
1 answer

How do I create a pop up box in Shiny to get input data, which then carries foward in my Shiny app?

I have an app that I where I want to ask a question up front in say a pop up dialogue box, have the question answered, have the box disappear, and then have my app run. I have searched for over a week and have tried many things to no avail. I have…
Scott Hunter
  • 254
  • 2
  • 14
0
votes
1 answer

Shiny - connecting sidebarPanels using conditionalPanel

I am actually trying to create a Shiny dashboard - where I need to select check boxes (in sidebarPanel - 'Datasets') based on the input value from sidebarPanel ('Treatment'). For example, if you look at the image below: When the user selects 'anti…
Harriss
  • 13
  • 1
  • 8