-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathui-datatables.R
47 lines (45 loc) · 1.94 KB
/
ui-datatables.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
get_datatables_ui <- function() {
sidebarLayout(
sidebarPanel(
conditionalPanel("input.table_tabs == 'Vegetation Indices'",
selectInput("table_vegindex_select",
label = "Select indices",
choices = "",
multiple = TRUE),
selectInput("table_vegindex_row_select",
label = "Selected rows",
choices = "",
multiple = TRUE)
),
conditionalPanel("input.table_tabs == 'Attributes'",
selectInput("table_attribute_row_select",
label = "Selected rows",
choices = "",
multiple = TRUE),
selectInput("table_attribute_column_select",
label = "Selected attributes to show",
choices = "",
multiple = TRUE)
),
conditionalPanel("input.table_tabs == 'Spectra'",
selectInput("table_vegindex_select",
label = "Selected rows",
choices = "",
multiple = TRUE)
)
),
mainPanel(
tabsetPanel(id = "table_tabs",
tabPanel('Spectra',
DT::dataTableOutput(
"table_spectra"
)),
tabPanel('Attributes',
DT::dataTableOutput("table_attributes"
)),
tabPanel('Vegetation Indices',
DT::dataTableOutput("table_vegindex"))
)
)
)
}