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
1
vote
1 answer

How to create a popover in shiny that appears at tab switch?

I would like to create a popover/tooltip in my Shiny app that appears right away when the users switches to the tab that contains a data table that the popover is attached to. With the shinybs package, I can create a popover that appear on click or…
DanB
  • 163
  • 5
1
vote
1 answer

Problem adding a tool tip to R shiny dashboard valueBox

I would like to add a tooltip to a valueBox subtitle, but I have an issue doing this - specifically when the valueBox has been generated in the server. In my example you can see for Value 2, I generate the valueBox in the UI, wrap the subtitle in a…
Cath
  • 57
  • 4
1
vote
1 answer

r shiny how to combine data table proxy and bs modal

I would like to display selected items from a table. The table is displayed via bsModal. And the selection of the table is done via dataTableProxy. I would also like to be able to select certain items via a button. Problem: If I start the app and…
qwertzuiop
  • 172
  • 8
1
vote
1 answer

Adjust the height of bsCollapsePanel in shiny app

I'm using the shinyBS package in a shiny app and I'm struggle with adjusting the height of the panel ! I have tried to put the height=100% in bsCollapse and bsCollapsePanel but it did not work…
Haribo
  • 2,071
  • 17
  • 37
1
vote
1 answer

Collapsible boxes without sidebar panel / several collapsibles or accordions as sidebar

I want to create a Shiny app that includes several collapsible boxes as a menu on one side. To do this, I have so far used the bsCollapsePanel function and put it in sidebarPanel. Unfortunately I have an additional margin from the boxes to the…
Alex_
  • 189
  • 8
1
vote
0 answers

R Shiny Collapsible Boxes in sidebar panel / Sidebar panel with multiple collapsible boxes over full size

I want to create a Shiny app, which consists of different openable boxes on one side. In the boxes should then be buttons etc.. I have used the following solution so far: library(shinythemes) library(shinyBS) fluidPage( theme =…
Alex_
  • 189
  • 8
1
vote
1 answer

Render shiny.i18n translation in tooltips

I want to use shiny.i18n in my app, which uses tooltips to provide more information on certain elements (using two types of tooltips, either with tipify or bsTooltip). However, I could not find how to integrate both, and the tooltips are not…
Nausi
  • 67
  • 5
1
vote
1 answer

Font color for single text element in Shiny bsPopover

I would like to change the font color of one part of the text in the bsPopover content argument. This syntax works on the Server side, but not in the content argument of the bsPopover…
Susan Switzer
  • 1,531
  • 8
  • 34
1
vote
1 answer

shinyBS modal not working with Shiny Server PRO

I have the following sample application which presents a modal with datatable output. This works in RStudio, works locally within any browser, works on an EC2 Linux instance with Shiny Server (Free version). But, DOES NOT work with Shiny Server PRO.…
Gopala
  • 10,363
  • 7
  • 45
  • 77
1
vote
1 answer

addTooltip with dynamic title

I have a shiny app with an input slider and an output table. I want to put a tooltip over the output table with text that includes the input from the input slider, i.e. the tooltip text updates dynamically with the change in the slider. I cannot get…
zola25
  • 1,774
  • 6
  • 24
  • 44
1
vote
1 answer

Utilizing Popover (shinybs) within InsertUI function

I'm having issues with using the popover function in my Shiny app when I'm using insertUI. See my code below. library(shinyBS) library(shiny) #ui---- ui = basicPage( actionButton("show", "Create a New Analysis") ) #server---- server =…
M.Yosh
  • 47
  • 5
1
vote
1 answer

Why different Shiny UI packages cannot be integrated within each other?

Canned packages in Rshiny gives a stock appearance for any basic Rshiny apps. More advanced user probably opt HTML Templates. The canned packages I came across for Rshiny UI are Shiny Dashboard, Shiny Material Design and Flex dashboard. But, why it…
user5249203
  • 4,436
  • 1
  • 19
  • 45
1
vote
0 answers

How to manage data access for a single shiny app with authentication?

I have Tab 1 in my App and this Tab includes two more subtabs Tab 1:1 and Tab 1:2. I have users A, B & C who are accessing the Tab. But I want to give access to Tab 1:1 to user A only, Tab 1:2 to user B and access to the whole tab to user C. Is…
Aneeta
  • 11
  • 2
1
vote
2 answers

Add Tooltip to navbarMenu in Shiny

I would like to add a tooltip for navbarMenu in Shiny app. Similar question asked here but, there is no answer.Here is my reproducible code library(shiny) library(shinyBS) ui <- shinyUI(fluidPage( sidebarLayout( sidebarPanel(), …
A. Suliman
  • 12,923
  • 5
  • 24
  • 37
1
vote
0 answers

shinyBS not compatible with new shiny 1.0.5

I am developing shiny app and I would like to use shinyBS. But the shinyBS is not compatible with new shiny v1.0.5, entire screen gray, including modal. I would like to plot on bsModal window. Is there a alternative way for shinyBS? Any idea ? Many…
alan pter
  • 41
  • 3
  • 11