пакет bsplus
великолепен и прост в использовании, но, похоже, он не обрабатывает dateRangeInput. Это ошибка?
Error in .tag_validate(tag, name = "div", class = "form-group shiny-input-container") :
class is: shiny-date-range-input form-group shiny-input-container, needs to be: form-group shiny-input-container
Отлично работает с selectInput и наиболее распространенными входами
без всплывающей подсказки все в порядке
## Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
dateRangeInput("daterange1", "Date range:",
start = "2001-01-01",
end = "2010-12-31")
) ,
selectInput("date", "Date:",
choices = c("me","you"))%>%
shinyInput_label_embed(
icon("question-circle") %>%
bs_embed_tooltip(title = "choose your date range dude !")
)
shinyApp(ui, server = function(input, output) { })
}
с всплывающей подсказкой не ...
## Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
dateRangeInput("daterange1", "Date range:",
start = "2001-01-01",
end = "2010-12-31")%>%
shinyInput_label_embed(
icon("question-circle") %>%
bs_embed_tooltip(title = "choose your date range dude !")
) ,
selectInput("date", "Date:",
choices = c("me","you"))%>%
shinyInput_label_embed(
icon("question-circle") %>%
bs_embed_tooltip(title = "choose your date range dude !")
)
)
shinyApp(ui, server = function(input, output) { })
}
Он также не работает с dateInput ...