Skip to contents

Proxy for editor htmlwidget

Usage

editor_proxy(shinyId, session = shiny::getDefaultReactiveDomain())

Arguments

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.

Value

A editor_proxy object.

Examples

if (FALSE) { # \dontrun{

# Consider having created a editor widget with
editorOutput("my_editor") # UI
output$my_editor <- renderEditor({}) # Server

# Then you can call proxy methods in observer:

# set editor proxy then call a cal_proxy_* function
editor_proxy("my_editor") %>%
  cal_proxy_today()

# or directly
cal_proxy_today("my_editor")

} # }