-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappTableSelect.R
23 lines (22 loc) · 960 Bytes
/
appTableSelect.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# UI for selecting a date-range in the table view
# last update: 2017-03-09
appTableSelect <- function(){
tagList(
selectInput('dateTableSelect',
label = 'Auswahl',
choices = c('letzte Woche'='1',
'letztes Monat'='2',
'letzten 2 Monate'='3',
'letzten 6 Monate'='4',
'aktuelles Jahr'='5',
'letztes Jahr'='6',
'alle Daten'='10',
'individuell'='7'),
selected = 1),
selectInput('pollTableSelect',
label = NA,
choices = c('keine'),
selected = 'keine'),
hr()
)
}