inst/shiny/tbldf_add_select_remove/ui.R

library("shiny")
library("shinyjs")
library("shinychord")

shinyUI(
  fluidPage(
    useShinyjs(),
    sidebarLayout(
      sidebarPanel(
        h4("CSV Import"),
        chord_data$ui_controller,
        h4("Add"),
        chord_list_data_add$ui_controller,
        h4("Select"),
        chord_list_data_select$ui_controller,
        h4("Remove"),
        chord_list_data_remove$ui_controller
      ),
      mainPanel(
        h4("CSV Import"),
        chord_data$ui_view,
        h4("Add"),
        chord_list_data_add$ui_view,
        h4("Select"),
        chord_list_data_select$ui_view,
        h4("Remove"),
        chord_list_data_remove$ui_view
      )
    )
  )
)
ijlyttle/shinychord documentation built on May 18, 2019, 3:41 a.m.