inst/examples/08-class/ui.R

library(shiny)
library(shinyTree)

#' Define UI for application that demonstrates a simple Tree editor
#' @author Jeff Allen \email{jeff@@trestletech.com}
shinyUI(
  pageWithSidebar(
    headerPanel("shinyTree with Custom CSS Class"),
    
    sidebarPanel(      
      helpText(p(""),
               HTML("<hr />Created using <a href = \"http://github.com/trestletech/shinyTree\">shinyTree</a>."))
    ),
    mainPanel(
      shinyTree("tree",
                types = "{ 'red-node': {'a_attr' : { 'style' : 'color:red' }}, 
                'blue-node': {'a_attr' : { 'style' : 'color:blue' }} }" )
    )
  ))

Try the shinyTree package in your browser

Any scripts or data that you put into this service are public.

shinyTree documentation built on Aug. 8, 2023, 1:08 a.m.