| add_ui_sidebar_right | R Documentation | 
This function registers UI elements at the right dashboard sidebar. The UI elements to be added depend on the version of shinydashboardPlus in use.
add_ui_sidebar_right(elementlist = NULL, append = FALSE)
elementlist | 
 list of UI elements to add to the sidebar tab  | 
append | 
 whether to append the   | 
Call this function after creating elements in program/ui_sidebar_right.R to register
them to the application framework and show them on the right dashboard sidebar
add_ui_sidebar_basic
add_ui_body
shinydashboardPlusGallery
## Not run: 
require(shiny)
require(shinydashboardPlus)
# shinydashboardPlus changed significantly in version 2.0 and has 
# different syntax for the element content, here is an example for each
# shinydashboardPlus < 2.0
s1 <- rightSidebarTabContent(id = 1, icon = "desktop", title = "Tab 1 - Plots", active = TRUE, 
                             div(helpText(align = "center", "Sample UI Text"),
                                 selectInput("sample1", "A Select", c("A", "B", "C")) ))
# shinydasboardPlus >= 2.0
s1 <- controlbarMenu(id = 1, selected = "Tab 1 - Plots",
                     controlbarItem(icon = icon("desktop"), title = "Tab 1 - Plots",
                                    div(helpText(align = "center", "Sample UI Text"),
                                    selectInput("sample1", "A Select", c("A", "B", "C")) )))
                                    
# add the above content to the sidebar (periscope functionality)
add_ui_sidebar_right(list(s1), append = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.