From af15f2c4a192dea02aab9e519defc68c71763ec4 Mon Sep 17 00:00:00 2001 From: yvesf Date: Mon, 22 Nov 2010 14:34:55 +0100 Subject: jquery ui --- .../demos/datepicker/alt-field.html | 36 +++++ .../demos/datepicker/animation.html | 58 ++++++++ .../demos/datepicker/buttonbar.html | 35 +++++ .../demos/datepicker/date-formats.html | 47 +++++++ .../demos/datepicker/default.html | 33 +++++ .../demos/datepicker/dropdown-month-year.html | 36 +++++ .../demos/datepicker/event-search.html | 49 +++++++ .../demos/datepicker/icon-trigger.html | 37 +++++ .../demos/datepicker/images/calendar.gif | Bin 0 -> 269 bytes .../development-bundle/demos/datepicker/index.html | 31 +++++ .../demos/datepicker/inline.html | 33 +++++ .../demos/datepicker/localization.html | 150 +++++++++++++++++++++ .../demos/datepicker/min-max.html | 33 +++++ .../demos/datepicker/multiple-calendars.html | 36 +++++ .../demos/datepicker/other-months.html | 37 +++++ .../demos/datepicker/show-week.html | 39 ++++++ 16 files changed, 690 insertions(+) create mode 100644 static/development-bundle/demos/datepicker/alt-field.html create mode 100644 static/development-bundle/demos/datepicker/animation.html create mode 100644 static/development-bundle/demos/datepicker/buttonbar.html create mode 100644 static/development-bundle/demos/datepicker/date-formats.html create mode 100644 static/development-bundle/demos/datepicker/default.html create mode 100644 static/development-bundle/demos/datepicker/dropdown-month-year.html create mode 100644 static/development-bundle/demos/datepicker/event-search.html create mode 100644 static/development-bundle/demos/datepicker/icon-trigger.html create mode 100644 static/development-bundle/demos/datepicker/images/calendar.gif create mode 100644 static/development-bundle/demos/datepicker/index.html create mode 100644 static/development-bundle/demos/datepicker/inline.html create mode 100644 static/development-bundle/demos/datepicker/localization.html create mode 100644 static/development-bundle/demos/datepicker/min-max.html create mode 100644 static/development-bundle/demos/datepicker/multiple-calendars.html create mode 100644 static/development-bundle/demos/datepicker/other-months.html create mode 100644 static/development-bundle/demos/datepicker/show-week.html (limited to 'static/development-bundle/demos/datepicker') diff --git a/static/development-bundle/demos/datepicker/alt-field.html b/static/development-bundle/demos/datepicker/alt-field.html new file mode 100644 index 0000000..10862e5 --- /dev/null +++ b/static/development-bundle/demos/datepicker/alt-field.html @@ -0,0 +1,36 @@ + + + + + jQuery UI Datepicker - Populate alternate field + + + + + + + + + + +
+ +

Date:  

+ +
+ + + +
+

Populate an alternate field with its own date format whenever a date is selected using the altField and altFormat options. This feature could be used to present a human-friendly date for user selection, while passing a more computer-friendly date through for further processing.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/animation.html b/static/development-bundle/demos/datepicker/animation.html new file mode 100644 index 0000000..3a2db30 --- /dev/null +++ b/static/development-bundle/demos/datepicker/animation.html @@ -0,0 +1,58 @@ + + + + + jQuery UI Datepicker - Animations + + + + + + + + + + + + + + + + + +
+ +

Date:

+ +

Animations:
+ +

+ +
+ + + +
+

Use different animations when opening or closing the datepicker. Choose an animation from the dropdown, then click on the input to see its effect. You can use one of the three standard animations or any of the UI Effects.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/buttonbar.html b/static/development-bundle/demos/datepicker/buttonbar.html new file mode 100644 index 0000000..0ba460a --- /dev/null +++ b/static/development-bundle/demos/datepicker/buttonbar.html @@ -0,0 +1,35 @@ + + + + + jQuery UI Datepicker - Display button bar + + + + + + + + + + +
+ +

Date:

+ +
+ + + +
+

Display a button for selecting Today's date and a Done button for closing the calendar with the boolean showButtonPanel option. Each button is enabled by default when the bar is displayed, but can be turned off with additional options. Button text is customizable.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/date-formats.html b/static/development-bundle/demos/datepicker/date-formats.html new file mode 100644 index 0000000..228572f --- /dev/null +++ b/static/development-bundle/demos/datepicker/date-formats.html @@ -0,0 +1,47 @@ + + + + + jQuery UI Datepicker - Format date + + + + + + + + + + +
+ +

Date:

+ +

Format options:
+ +

+ +
+ + + +
+

Display date feedback in a variety of ways. Choose a date format from the dropdown, then click on the input and select a date to see it in that format.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/default.html b/static/development-bundle/demos/datepicker/default.html new file mode 100644 index 0000000..a2ec662 --- /dev/null +++ b/static/development-bundle/demos/datepicker/default.html @@ -0,0 +1,33 @@ + + + + + jQuery UI Datepicker - Default functionality + + + + + + + + + + +
+ +

Date:

+ +
+ + + +
+

The datepicker is tied to a standard form input field. Focus on the input (click, or use the tab key) to open an interactive calendar in a small overlay. Choose a date, click elsewhere on the page (blur the input), or hit the Esc key to close. If a date is chosen, feedback is shown as the input's value.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/dropdown-month-year.html b/static/development-bundle/demos/datepicker/dropdown-month-year.html new file mode 100644 index 0000000..9ff2234 --- /dev/null +++ b/static/development-bundle/demos/datepicker/dropdown-month-year.html @@ -0,0 +1,36 @@ + + + + + jQuery UI Datepicker - Display month & year menus + + + + + + + + + + +
+ +

Date:

+ +
+ + + +
+

Show month and year dropdowns in place of the static month/year header to facilitate navigation through large timeframes. Add the boolean changeMonth and changeYear options.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/event-search.html b/static/development-bundle/demos/datepicker/event-search.html new file mode 100644 index 0000000..07ee3f9 --- /dev/null +++ b/static/development-bundle/demos/datepicker/event-search.html @@ -0,0 +1,49 @@ + + + + + jQuery UI Datepicker - Display multiple months + + + + + + + + + + +
+ + + + + + +
+ + + +
+

Select the date range to search for.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/icon-trigger.html b/static/development-bundle/demos/datepicker/icon-trigger.html new file mode 100644 index 0000000..7bd9e84 --- /dev/null +++ b/static/development-bundle/demos/datepicker/icon-trigger.html @@ -0,0 +1,37 @@ + + + + + jQuery UI Datepicker - Icon trigger + + + + + + + + + + +
+ +

Date:

+ +
+ + + +
+

Click the icon next to the input field to show the datepicker. Set the datepicker to open on focus (default behavior), on icon click, or both.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/images/calendar.gif b/static/development-bundle/demos/datepicker/images/calendar.gif new file mode 100644 index 0000000..d0abaa7 Binary files /dev/null and b/static/development-bundle/demos/datepicker/images/calendar.gif differ diff --git a/static/development-bundle/demos/datepicker/index.html b/static/development-bundle/demos/datepicker/index.html new file mode 100644 index 0000000..37c8ef7 --- /dev/null +++ b/static/development-bundle/demos/datepicker/index.html @@ -0,0 +1,31 @@ + + + + + jQuery UI Datepicker Demos + + + + +
+

Examples

+ +
+ + + diff --git a/static/development-bundle/demos/datepicker/inline.html b/static/development-bundle/demos/datepicker/inline.html new file mode 100644 index 0000000..cb1e9b7 --- /dev/null +++ b/static/development-bundle/demos/datepicker/inline.html @@ -0,0 +1,33 @@ + + + + + jQuery UI Datepicker - Display inline + + + + + + + + + + +
+ +Date:
+ +
+ + + +
+

Display the datepicker embedded in the page instead of in an overlay. Simply call .datepicker() on a div instead of an input.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/localization.html b/static/development-bundle/demos/datepicker/localization.html new file mode 100644 index 0000000..f43f517 --- /dev/null +++ b/static/development-bundle/demos/datepicker/localization.html @@ -0,0 +1,150 @@ + + + + + jQuery UI Datepicker - Localize calendar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +

Date:   +

+ +
+ + + +
+

Localize the datepicker calendar language and format (English / Western formatting is the default). The datepicker includes built-in support for languages that read right-to-left, such as Arabic and Hebrew.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/min-max.html b/static/development-bundle/demos/datepicker/min-max.html new file mode 100644 index 0000000..2a9d3af --- /dev/null +++ b/static/development-bundle/demos/datepicker/min-max.html @@ -0,0 +1,33 @@ + + + + + jQuery UI Datepicker - Restrict date range + + + + + + + + + + +
+ +

Date:

+ +
+ + + +
+

Restrict the range of selectable dates with the minDate and maxDate options. Set the beginning and end dates as actual dates (new Date(2009, 1 - 1, 26)), as a numeric offset from today (-20), or as a string of periods and units ('+1M +10D'). For the last, use 'D' for days, 'W' for weeks, 'M' for months, or 'Y' for years.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/multiple-calendars.html b/static/development-bundle/demos/datepicker/multiple-calendars.html new file mode 100644 index 0000000..bb6ff26 --- /dev/null +++ b/static/development-bundle/demos/datepicker/multiple-calendars.html @@ -0,0 +1,36 @@ + + + + + jQuery UI Datepicker - Display multiple months + + + + + + + + + + +
+ +

Date:

+ +
+ + + +
+

Set the numberOfMonths option to an integer of 2 or more to show multiple months in a single datepicker.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/other-months.html b/static/development-bundle/demos/datepicker/other-months.html new file mode 100644 index 0000000..88f6f07 --- /dev/null +++ b/static/development-bundle/demos/datepicker/other-months.html @@ -0,0 +1,37 @@ + + + + + jQuery UI Datepicker - Dates in other months + + + + + + + + + + +
+ +

Date:

+ +
+ + + +
+

The datepicker can show dates that come from other than the main month + being displayed. These other dates can also be made selectable.

+
+ + + diff --git a/static/development-bundle/demos/datepicker/show-week.html b/static/development-bundle/demos/datepicker/show-week.html new file mode 100644 index 0000000..0a47ed2 --- /dev/null +++ b/static/development-bundle/demos/datepicker/show-week.html @@ -0,0 +1,39 @@ + + + + + jQuery UI Datepicker - Show week of the year + + + + + + + + + + +
+ +

Date:

+ +
+ + + +
+

The datepicker can show the week of the year. The default calculation follows + the ISO 8601 definition: the week starts on Monday, the first week of the year + contains the first Thursday of the year. This means that some days from one + year may be placed into weeks 'belonging' to another year.

+
+ + + -- cgit v1.2.1