
DfE bookmark include
set_bookmark_include.Rd
This function allows for a whitelist of included inputs for bookmarking
Examples
# You will need a line such as this in your global.R script ================
bookmarking_whitelist <- c("navlistPanel", "tabsetpanels")
# In the server.R script ===================================================
shiny::observe({
set_bookmark_include(input, bookmarking_whitelist)
# Trigger this observer every time an input changes
shiny::reactiveValuesToList(input)
session$doBookmark()
onBookmarked(function(url) {
updateQueryString(url)
})
})