inst/examples/15-data/ui.R

library(shiny)
library(shinyTree)


#' #' Example of storing and retreiving data in the tree

shinyUI(
  pageWithSidebar(
    # Application title
    headerPanel("shinyTree data with 'selected' input"),
    
    
    sidebarPanel(
      helpText(HTML("An example of using storing and retreiving data in the tree. Select roo1 or leaf1 to see stored data."))
    ),
    mainPanel(
      "Currently Selected:",
      verbatimTextOutput("selTxt"),
      hr(),
      shinyTree("tree")
    )
  ))
trestletech/shinyTree documentation built on Feb. 24, 2024, 9:10 p.m.