View source: R/calendar-proxy.R
calendar_proxy | R Documentation |
Proxy for calendar htmlwidget
calendar_proxy(shinyId, session = shiny::getDefaultReactiveDomain())
shinyId |
single-element character vector indicating the output ID of the chart to modify (if invoked from a Shiny module, the namespace will be added automatically). |
session |
the Shiny session object to which the chart belongs; usually the default value will suffice. |
A calendar_proxy
object.
Other calendar proxy methods:
cal_proxy_clear()
,
cal_proxy_clear_selection()
,
cal_proxy_options()
,
cal_proxy_toggle()
,
cal_proxy_view()
,
calendar-proxy-navigate
,
calendar-proxy-schedule
## Not run:
# Consider having created a calendar widget with
calendarOutput("my_calendar") # UI
output$my_calendar <- renderCalendar({}) # Server
# Then you can call proxy methods in observer:
# set calendar proxy then call a cal_proxy_* function
calendar_proxy("my_calendar") %>%
cal_proxy_today()
# or directly
cal_proxy_today("my_calendar")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.