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
10
votes
2 answers

Tooltip in shiny UI for help text

I want to place a help text for check-box label as a tooltip. In the following example I use the shinyBS package - but I only get it to work for the title of the checkbox input group. Any ideas how it could work after the "Lernerfolg" or…
sammerk
  • 1,143
  • 1
  • 9
  • 23
9
votes
2 answers

add popovers to shiny app?

I would like to add a (?) next to the title of a widget so that the user can hover or click it and get extra information and a link they can click. This is what I have right now: ## app.R ## library(shiny) library(shinydashboard) library(shinyBS) #…
Ignacio
  • 7,646
  • 16
  • 60
  • 113
8
votes
2 answers

Math mode in bsTooltip in shiny

I'm wondering whether these is any option to include math mode in tooltip title using bsTooltip() from shinyBS package. Small example: rm(list = ls()) library(shiny) library(shinyBS) ui <- basicPage( headerPanel("Tooltip test"), bsTooltip(id =…
Adela
  • 1,757
  • 19
  • 37
7
votes
0 answers

shinybs `options` argument usage

The problem I started using shinybs which is great for displaying popovers or tooltips in shinyapps. However, I find the help provided with the package a bit lacking when it comes to customization. Most functions from this package contain options…
Siemkowski
  • 1,351
  • 5
  • 15
  • 32
7
votes
1 answer

Adding tooltip to disabled button in Shiny?

In R/Shiny, I would like to add a tooltip to inform the user that a button is disabled because mandatory fields aren't completed. I am able to get a tooltip to display using the ShinyBS package, however it does not seem to work when the button is…
Iain
  • 1,608
  • 4
  • 22
  • 27
7
votes
3 answers

Create a popup dialog box interactive

I was wondering if it is possible to create a popup dialog box interactive by using shiny (and shinyBS). For example, I have a string and I want to change it and before doing a dialog box shows up asking if I really want to change it. In case I say…
Stefano
  • 361
  • 1
  • 4
  • 21
6
votes
2 answers

reactive radioButtons with tooltipBS in shiny

I want to create a radioButtons widget with tooltip using shinyBS. What I want to achieve is to create one widget with 3 buttons with different info in tooltip. Based on this solution it was created 3 separate radio buttons with different id…
Nicolabo
  • 1,337
  • 12
  • 30
6
votes
1 answer

Customize the size of a modal window in ShinyBS

I recently used shinyBS to create a modal window, as in bsModal(id, title, trigger, ..., size) The size argument is either 'small' or 'large' (or absent). As you can see, even the large window is pretty small and things get packed in pretty…
tumultous_rooster
  • 12,150
  • 32
  • 92
  • 149
5
votes
0 answers

datatable with nesting/child rows and modal

I am trying to make a datatable that has two layers of nesting. The first one is used for grouping rows (https://github.com/rstudio/shiny-examples/issues/9#issuecomment-295018270) and the second should open a modal (R shinyBS popup window). I can…
Jan Stanstrup
  • 1,152
  • 11
  • 28
5
votes
0 answers

shiny RHandsontable is not properly displayed in shiny modalDialog

I have researched a lot on the issue already, but so far no solution has been provided when using shiny's showModal() instead of bsModal(). When I show a rhandsontable in a modal Dialog for the second time, the display is buggy, i.e. not all columns…
5
votes
0 answers

R ShinyBS Model and Dateinput

I've been trying to use shinyBS modals with dateInput. The problem is that the calendar widget is hidden behind the modal. Here is my example code: library(shiny) library(shinyBS) shinyApp( ui =fluidPage( mainPanel( …
plastikdusche
  • 235
  • 2
  • 10
4
votes
1 answer

Shiny observeEvent trigger when input loses focus

I've built a Shiny app that has a popup message if a user puts in a non-numeric value into a numericInput. The code below does just that (using shinyBS), but it reacts too quickly. If the user starts entering text, but needs to think a little about…
4
votes
2 answers

Popover / tooltip for a text in shiny app using shinybs

Is there a way to add popover or a tooltip to an output$Text <- renderText({ c("TestText") }) element, which is then rendered through renderUI, using shinyBS?
vladli
  • 1,454
  • 2
  • 16
  • 40
4
votes
2 answers

Add Tooltip to Tabs in Shiny

I am trying to add tooltips/popovers using the shinyBS package for a Shiny application but am having an issue due to tabs don't have input/ids. This is preventing the tooltip from firing. Any thoughts? library(shiny) library(shinyBS) shinyApp( …
Dante Smith
  • 561
  • 1
  • 6
  • 21
4
votes
1 answer

Increase width of popify pop-up from shinyBS

I've created a pop-up with the popify function from the shinyBS package in Shiny. I want to have a pop-up on the bottom of my filter that is as wide as my filter itself. I can't find anything in the documentation about this. screenshot: Example…
Tim_Utrecht
  • 1,459
  • 6
  • 24
  • 44
1
2 3 4 5 6 7 8