::install_github('alexvpickering/shinypanel') remotes
Example control panel with button-attached inputs and tooltips:
library(shiny)
library(shinypanel)
<- fluidPage(
ui div(class = 'row',
div(class = 'col-sm-12 col-lg-6',
div(class = 'well-form',
textAreaInputWithButtons(
inputId = 'text',
label = 'Type something:',
actionButton('btn3', '', icon('plus', 'fa-fw'), title = 'Click to add something')
),selectizeInputWithButtons(
inputId = 'selection',
label = 'Select something:',
label_title = 'Information about input',
actionButton('btn1', '', icon('tag', 'fa-fw'), title = 'this does something'),
actionButton('btn2', '', icon('chevron-right', 'fa-fw'), title = 'this does something else'),
options = list(multiple = TRUE)
)
)
)
)
)
<- function(input, output, session) {
server
<- reactive({
choices paste('Long Option', 1:5)
})
observe({
updateSelectizeInput(session, 'selection', choices = choices())
})
}
shinyApp(ui, server)