Questions tagged [shinywidgets]

177 questions
0
votes
1 answer

Shiny searchInput

Does anyone know if it is possible to create a "shinyWidget :: searchInput" designed with a grid that would allow entering only 9 digits in the field? https://pasteboard.co/J3mduIS.png
Damien Dotta
  • 771
  • 3
  • 13
0
votes
1 answer

Wrapping the dropdownButton in an absolutePanel in R Shiny

I'm building an interactive map with Shiny and I'm currently trying to hide my UI elements in a dropdownButton from the shinyWidgets pkg. My problem is that so far I can either have the dropdownButton working and having to remove the width =…
0
votes
1 answer

Replace observeEvent() to restore automatic functionality in a shiny app

I have the shiny app below in which I use the actionbutton 'Update' to update the choices of the last checkbox group 'Display Tickers for Visuals:' when I select them from the 1st checkbox group 'Current Selection(s):'. The issue is that I want to…
firmo23
  • 7,490
  • 2
  • 38
  • 114
0
votes
0 answers

Change margin spacing of AwesomeCheckbox from ShinyWidgets

I need to change the top and bottom spacing of an awesomeCheckbox() input item in a Shiny project, because I have many of them laid vertically and they have too much whitespace in between. Using inspect element on my browser I can see that I need…
0
votes
1 answer

How to get more space between buttons of radioGroupButtons and to include icons

I am using 'radioGroupButtons' of the shinyWidgets package with the option individual = TRUE. The buttons are positioned tightly side-by-side. I have two questions. Is is possible to get more space between the buttons? Is is also possible to get…
WJH
  • 539
  • 5
  • 14
0
votes
1 answer

using pickerInput in r shiny to apply function

I would like to be able to apply a function to a given set of columns from the RLdata10000 dataset. I have been going through shiny tutorials and am attempting to learn how to use observeEvent and actionButton. However, I would like to be able to…
jvalenti
  • 604
  • 1
  • 9
  • 31
0
votes
1 answer

How do I change the size of calendar icon in airDatepicker from shinyWidget?

I use airDatepicker from shinyWidget on my dashboard: Here I have succesfully change the size of the input container as shown in the picture, but not the container of calendar icon (the box where shinywidget place the calendar icon). What I wanted…
matchbox13
  • 73
  • 13
0
votes
1 answer

How to change font size of the input in airDatepicker from shinywidgets package?

I'm using airDatepicker from the shinyWidgets package. Here's my code: airDatepickerInput(inputId = "choosedate", label = "month range", range = TRUE, placeholder = "choose month range", dateFormat = "M yy", view = "months", minView = "months",…
matchbox13
  • 73
  • 13
0
votes
1 answer

add shinyWidgets into datatable in R

I am currently trying to add nice user input from shinyWidgets into a DT datatable. I tried to follow the example from DT github with the radioButtons, which is working fine : library(DT) library(shinyWidgets) m = data.frame(matrix( …
Bambs
  • 545
  • 4
  • 14
0
votes
0 answers

Use HTML in sweetalert button

Is there any chance to not only use html in the text but in the button of sendweetalert or confirmsweetalert in the shinyWidgets package? library(shiny) library(shinyWidgets) ui <- fluidPage( tags$h1("Confirm sweet alert"), actionButton( …
Thomas
  • 1,252
  • 6
  • 24
0
votes
1 answer

Limit number selected items in multiInput() from shinyWidgets package

Let say I have below Shiny app - library(shinyWidgets); library("shiny") ui <- fluidPage( multiInput( inputId = "id", label = "Fruits :", choices = c("Banana", "Blueberry", "Cherry", "Coconut", "Grapefruit", "Kiwi", …
Bogaso
  • 2,838
  • 3
  • 24
  • 54
-1
votes
1 answer

Mimicking VBA Input ListControl in R Shiny

Is it possible to generate VBA List Control input (as shown in the screenshot) in an R Shiny dashboard? VBA List Input Example Screen Shot
1 2 3
11
12