editor_proxy | R Documentation |
Proxy for editor htmlwidget
editor_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 editor_proxy
object.
Other editor proxy methods:
editor-proxy-show-hide
,
editor_proxy_change_preview()
,
editor_proxy_insert()
## Not run:
# 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")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.