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

access datatable row ID (generated with rowCallback) from shinyBS::addpopover()

I'm attempting to add popovers with additional information to individual cells of a datatable using shinyBS functions (because I'd like them to be proper popovers and not 'just' the datatable title attributes). ShinyBS::addpopover() requires an…
Anne-Wil
  • 3
  • 3
0
votes
0 answers

R Shiny problem with inputs belonging to a bsCollapsePanel

In this shiny App (code below), tabPanel 'Scatter plot', note that the plot is correctly rendered only when the user expand the bsCollapsePanel 'Marker settings' for the first time. Before expanding the panel 'Marker settings' at first time, the…
0
votes
1 answer

How can I render HTML content in an R Shiny Popify (ShinyBS) tooltip?

I'm building out a datatable in R Shiny and part of it will include tooltips unique to each cell. I've accomplished that, however, I seem to be unable to insert HTML content into the tooltip itself. In the example below, I'm inserting HTML content…
JStorey
  • 13
  • 1
  • 4
0
votes
1 answer

How to place text in same line with an html tag in R shiny?

As shown in the below image, I'm trying to place a line of text in front of an info icon rendered using the popify() function in the shinyBS package. The code at the bottom works for the situation where there is no text in front of info icon and…
Village.Idyot
  • 1,359
  • 2
  • 8
0
votes
1 answer

How to switch out a bsButton with an icon when using shinyBS?

I am looking for hover-over ('popover') user instructions when the cursor is placed over an icon. No modal, just a hover-over popup. I've messed around with tooltips, etc., but the text is tiny and not formattable. Package shinyBS may offer a nice…
Village.Idyot
  • 1,359
  • 2
  • 8
0
votes
1 answer

Shiny bsModal: Possible to remove the x close button in title?

I have my Shiny bsModal setup as so: # ui.R bsModal("test_events_modal", htmlOutput("modal_title"), trigger='dummy', size = "large", div(dataTableOutput("current_test_events_dt"), style = "font-size:90%;width:95%") ) # server.R modal_title =…
rchitect-of-info
  • 1,150
  • 1
  • 11
  • 23
0
votes
1 answer

thumbnail_label overlays other items with large content R Shiny

I am trying to create a shiny app which displays thumbnail-labels, each thumbnail-label item contains an image, label, button, and content (which are all text inputs). The problem is when text in content exceeds text size in other thumbnails, this…
MSS
  • 35
  • 4
0
votes
1 answer

Cannot get bsModal to trigger within Shiny modules

I am attempting to create and trigger a bsModal in a Shiny app that uses modules and I cannot get it to open with an action button. My initial thought is that it has something to do with the ns() function on the action button ID but I have tried…
0
votes
1 answer

Force draw of hidden table

I have the following app, which is just a collapse panel containing an rhandsontable table. library(shiny) library(shinyBS) library(rhandsontable) ui <- function() { fluidPage( bsCollapsePanel( "Test", …
Wasabi
  • 2,879
  • 3
  • 26
  • 48
0
votes
1 answer

R shinyBS modal pop up stopped working and can't make it to work with Shiny Server

I have a simple example below of a shinyBS modal pop up concept upon a user entering the site. This was working fine, and now suddenly stopped working. I have shiny server pro. Not only does the modal not show up, but the datatable is also not…
Gopala
  • 10,363
  • 7
  • 45
  • 77
0
votes
1 answer

shinyBS - remove tooltip when dragging

I'm using dragulaR to create draggable divs in Shiny, and added a tooltip using shinyBS to each div. I was wondering if it's possible to remove the tooltip (I tried adding jQuery from JQuery UI: remove Bootstrap tooltip on a draggable clone when…
MayaGans
  • 1,815
  • 9
  • 30
0
votes
1 answer

shinyBS modal not working with consecutive observe Event

I am trying to implement shiny popup as described in this post on shinyBS popup. My app is wrapped in an observeEvent() based on the Enter key and isolate() to prevent the table from changing as we type the name of cars before pressing Enter…
R noob
  • 495
  • 3
  • 20
0
votes
1 answer

Unable to set focus to shinyBS when using rhandsontable

I have a rhandsontable object within a bsModal with default context menu options. When I right click on a table cell, the context menu options are shown behind the bsModal window, i.e., area not in focus, making it unusable. I would want to have the…
FAlonso
  • 494
  • 2
  • 15
0
votes
1 answer

Set bsButton position in shiny dashboard

I have a basic shiny dashboard below and I would like to know if I can a little bit left or right the bs button "show/hide sidebar". #ui.r library(shinydashboard) library(shiny) library(shinyBS) dashboardPage( dashboardHeader(), …
firmo23
  • 7,490
  • 2
  • 38
  • 114
0
votes
1 answer

How to add multiple bsPopovers in Rstudio without overwriting?

that the last popover overwrites all others I want to add multiple popovers on several ValueBoxes inside shinydashboard. I am using bsPopover() with unique id for each box. However, I am writing all my popovers in a helper file, and calling the…