dateInput(inputId, label, value = NULL, min = NULL, max = NULL,
format = "yyyy-mm-dd", startview = "month", weekstart = 0,
language = "en", width = NULL)
input
slot that will be used to access the value.NULL
for no label.yyyy-mm-dd
format. If NULL (the default), will use the current date
in the client's time zone.yyyy-mm-dd
format.yyyy-mm-dd
format."yyyy-mm-dd"
.'400px'
, or '100%'
;
see validateCssUnit
.format
string specifies how the date will be displayed in
the browser. It allows the following values: yy
Year without century (12)
yyyy
Year with century (2012)
mm
Month number, with leading zero (01-12)
m
Month number, without leading zero (1-12)
M
Abbreviated month name
MM
Full month name
dd
Day of month with leading zero
d
Day of month without leading zero
D
Abbreviated weekday name
DD
Full weekday name
dateRangeInput
, updateDateInput
Other input elements: actionButton
,
checkboxGroupInput
,
checkboxInput
,
dateRangeInput
, fileInput
,
numericInput
, passwordInput
,
radioButtons
, selectInput
,
sliderInput
, submitButton
,
textAreaInput
, textInput
## Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
dateInput("date1", "Date:", value = "2012-02-29"),
# Default value is the date in client's time zone
dateInput("date2", "Date:"),
# value is always yyyy-mm-dd, even if the display format is different
dateInput("date3", "Date:", value = "2012-02-29", format = "mm/dd/yy"),
# Pass in a Date object
dateInput("date4", "Date:", value = Sys.Date()-10),
# Use different language and different first day of week
dateInput("date5", "Date:",
language = "ru",
weekstart = 1),
# Start with decade view instead of default month view
dateInput("date6", "Date:",
startview = "decade")
)
shinyApp(ui, server = function(input, output) { })
}
Run the code above in your browser using DataLab