-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappStore.R
More file actions
23 lines (22 loc) · 982 Bytes
/
appStore.R
File metadata and controls
23 lines (22 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# layout for section "Storage"
# last update: 2016-10-06
appStore <- function(){
fluidRow(
column(12,
h3('Datenblatt'),
selectInput('repoSelect',
label = 'Auswahl:',
choices = names(appRepos)),
rHandsontableOutput('dataSheet'),
br(),
htmlOutput('dataSheetDirty', inline = TRUE),
conditionalPanel(
condition = "output.dataSheetDirty != ''",
tagList(actionButton('saveSheet',
'Änderungen im Datentresor speichern',
icon=icon('save')),
br(),br())),
downloadButton('exportCSV', 'CSV Export')
)
)
}