Commit f86d6bee by Jan Wijffels

remove per minute

parent 8d841000
...@@ -116,7 +116,7 @@ observeEvent(input$uiInput_downloadtimeseries, { ...@@ -116,7 +116,7 @@ observeEvent(input$uiInput_downloadtimeseries, {
```{r} ```{r}
#inputPanel( #inputPanel(
radioButtons(inputId = "uiInput_aggregationlevel", label = "Vergelijk", radioButtons(inputId = "uiInput_aggregationlevel", label = "Vergelijk",
choices = c("Per minuut" = "min", choices = c(#"Per minuut" = "min",
"Per uur" = "hour", "Per uur" = "hour",
"Per dag" = "day", "Per dag" = "day",
"Per maand" = "month", "Per maand" = "month",
...@@ -327,7 +327,7 @@ renderValueBox({ ...@@ -327,7 +327,7 @@ renderValueBox({
userdata <- citizenair_userdata() userdata <- citizenair_userdata()
filename <- userdata$appdata$getCitizenData("fileinfo")$name filename <- userdata$appdata$getCitizenData("fileinfo")$name
if(length(filename) > 0){ if(length(filename) > 0){
ui <- valueBox("Uw excel file", caption = filename) ui <- valueBox("geladen excel", caption = filename)
}else{ }else{
ui <- NULL ui <- NULL
} }
...@@ -343,7 +343,7 @@ renderUI({ ...@@ -343,7 +343,7 @@ renderUI({
x <- userdata$appdata$getCitizenData("meta") x <- userdata$appdata$getCitizenData("meta")
if(is.data.frame(x) && nrow(x) > 0){ if(is.data.frame(x) && nrow(x) > 0){
choices <- structure(as.list(x$sheet_id), .Names = x$sheet) choices <- structure(as.list(x$sheet_id), .Names = x$sheet)
ui <- selectInput(inputId = "uiInput_sheet", label = "Selecteer sheet", choices = choices, selected = choices, multiple = TRUE) ui <- selectInput(inputId = "uiInput_sheet", label = "Selecteer sheet - om te verwijderen selecteer een sheet en druk op je delete knop", choices = choices, selected = choices, multiple = TRUE)
}else{ }else{
ui <- NULL ui <- NULL
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment