-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Gordon Shotwell
committed
Jan 24, 2024
1 parent
f783409
commit 6541998
Showing
5 changed files
with
27 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,4 @@ | |
"Date:", | ||
value="2016-02-29", | ||
datesdisabled=["2016-03-01", "2016-03-02"], | ||
), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,27 @@ | ||
from datetime import date | ||
|
||
from shiny import App, Inputs, Outputs, Session, ui | ||
from shiny.express import ui | ||
|
||
app_ui = ui.page_fluid( | ||
ui.input_date_range( | ||
"daterange1", "Date range:", start="2001-01-01", end="2010-12-31" | ||
), | ||
# Default start and end is the current date in the client's time zone | ||
ui.input_date_range("daterange2", "Date range:"), | ||
# start and end are always specified in yyyy-mm-dd, even if the display | ||
# format is different | ||
ui.input_date_range( | ||
"daterange3", | ||
"Date range:", | ||
start="2001-01-01", | ||
end="2010-12-31", | ||
min="2001-01-01", | ||
max="2012-12-21", | ||
format="mm/dd/yy", | ||
separator=" - ", | ||
), | ||
# Pass in Date objects | ||
ui.input_date_range( | ||
"daterange4", "Date range:", start=date(2001, 1, 1), end=date(2010, 12, 31) | ||
), | ||
# Use different language and different first day of week | ||
ui.input_date_range("daterange5", "Date range:", language="de", weekstart=1), | ||
# Start with decade view instead of default month view | ||
ui.input_date_range("daterange6", "Date range:", startview="decade"), | ||
ui.input_date_range("daterange1", "Date range:", start="2001-01-01", end="2010-12-31") | ||
# Default start and end is the current date in the client's time zone | ||
ui.input_date_range("daterange2", "Date range:") | ||
# start and end are always specified in yyyy-mm-dd, even if the display | ||
# format is different | ||
ui.input_date_range( | ||
"daterange3", | ||
"Date range:", | ||
start="2001-01-01", | ||
end="2010-12-31", | ||
min="2001-01-01", | ||
max="2012-12-21", | ||
format="mm/dd/yy", | ||
separator=" - ", | ||
) | ||
|
||
|
||
def server(input: Inputs, output: Outputs, session: Session): | ||
pass | ||
|
||
|
||
app = App(app_ui, server) | ||
# Pass in Date objects | ||
ui.input_date_range( | ||
"daterange4", "Date range:", start=date(2001, 1, 1), end=date(2010, 12, 31) | ||
) | ||
# Use different language and different first day of week | ||
ui.input_date_range("daterange5", "Date range:", language="de", weekstart=1) | ||
# Start with decade view instead of default month view | ||
ui.input_date_range("daterange6", "Date range:", startview="decade") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters