+ shiny::column(4, shiny::span(shiny::textOutput(outputId="gridLengthWarn"), style="color: red;")),
+ shiny::column(4, shiny::span(shiny::textOutput(outputId="gridShapeWarn"), style="color: red;")),
+ shiny::column(4, shiny::span(shiny::textOutput(outputId="gridScaleWarn"), style="color: red;"))
+ )
+ ),
+ shiny::actionButton(inputId="addWP", label="Add")
+ ),
+ # SEQUENTIAL BAYES (seqB).
+ shiny::tags$details(
+ shiny::tags$summary(shiny::h4("Sequential Bayes (seqB)")),
+ shiny::p("This is a description of the method."),
+ shiny::br(),
+ shiny::fluidRow(
+ shiny::column(8, shiny::textInput(inputId="serialseqBInput", label="Mean Serial Interval")),
+ shiny::column(4, shiny::selectInput(inputId="serialseqBUnits", label="Time units", choices=list("Days", "Weeks")))
+ ),
+ shiny::span(shiny::textOutput(outputId="serialseqBWarn"), style="color: red;"),
+ shiny::textInput(inputId="kappaInput", label=shiny::HTML(paste0("Maximum value of the uniform prior",
+ shiny::tags$sup("[?]", title="This describes the prior belief of R0, and should be set to a higher value if R0 is believed to be larger. (Default: 20)"))),
+ value="20"
+ ),
+ shiny::span(shiny::textOutput(outputId="kappaWarn"), style="color: red;"),
+ shiny::actionButton(inputId="addseqB", label="Add")
+ ),
+ # INCIDENCE DECAY (ID).
+ shiny::tags$details(
+ shiny::tags$summary(shiny::h4("Incidence Decay (ID)")),
+ shiny::p("This is a description of the method."),
+ shiny::br(),
+ shiny::fluidRow(
+ shiny::column(8, shiny::textInput(inputId="serialIDInput", label="Mean Serial Interval")),
+ shiny::column(4, shiny::selectInput(inputId="serialIDUnits", label="Time units", choices=list("Days", "Weeks")))
+ ),
+ shiny::span(shiny::textOutput(outputId="serialIDWarn"), style="color: red;"),
+ shiny::actionButton(inputId="addID", label="Add")
+ ),
+ # INCIDENCE DECAY & EXPONENTIAL ADJUSTEMENT (IDEA).
+ shiny::tags$details(
+ shiny::tags$summary(shiny::h4("Incidence Decay and Exponential Adjustement (IDEA)")),
+ shiny::p("This is a description of the method."),
+ shiny::br(),
+ shiny::fluidRow(
+ shiny::column(8, shiny::textInput(inputId="serialIDEAInput", label="Mean Serial Interval")),
+ shiny::column(4, shiny::selectInput(inputId="serialIDEAUnits", label="Time units", choices=list("Days", "Weeks")))
+ ),
+ shiny::span(shiny::textOutput(outputId="serialIDEAWarn"), style="color: red;"),
+ shiny::actionButton(inputId="addIDEA", label="Add")
+ ),
+ shiny::tags$style(type="text/css", "summary { display: list-item; cursor: pointer; }"),
+ shiny::tags$style(type="text/css", "summary h4 { display: inline; }")