aboutsummaryrefslogtreecommitdiffstats
path: root/demos/datepicker/dropdown-month-year.html
diff options
context:
space:
mode:
authorFelix Nagel <info@felixnagel.com>2014-06-03 23:18:51 +0200
committerScott González <scott.gonzalez@gmail.com>2015-01-29 17:52:46 -0500
commit510ba08cff1656775d7a4625624686fe07de926c (patch)
treeb04a4d69aff37c552f50f8c6f8485eaa59ef5a48 /demos/datepicker/dropdown-month-year.html
parent35b52a0dfca4654c96db7b0c2871328404b6bee8 (diff)
downloadjquery-ui-510ba08cff1656775d7a4625624686fe07de926c.tar.gz
jquery-ui-510ba08cff1656775d7a4625624686fe07de926c.zip
Calendar: Add calendar widget
Add calendar widget by copying and renaming datepicker widget files. Remove datepicker functionality, options and methods from Calendar. Remove calendar functionality, options and methods from Datepicker. Adjust tests due to split and changed specification. Remove duplicated demo files and fix some demos. Simplify calendar generation, use CSS instead of inline styles. Fix destroy method. Make use of uniqueId method. Fix focus highlighting when month is changed. Add version property. Add common unit tests. Fix input keyboard handling.
Diffstat (limited to 'demos/datepicker/dropdown-month-year.html')
-rw-r--r--demos/datepicker/dropdown-month-year.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/demos/datepicker/dropdown-month-year.html b/demos/datepicker/dropdown-month-year.html
deleted file mode 100644
index c6102917f..000000000
--- a/demos/datepicker/dropdown-month-year.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Display month &amp; year menus</title>
- <link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../external/jquery/jquery.js"></script>
- <script src="../../external/globalize/globalize.js"></script>
- <script src="../../external/date.js"></script>
- <script src="../../external/localization.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/button.js"></script>
- <script src="../../ui/position.js"></script>
- <script src="../../ui/datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker({
- changeMonth: true,
- changeYear: true
- });
- });
- </script>
-</head>
-<body>
-
-<p>Date: <input type="text" id="datepicker"></p>
-
-<div class="demo-description">
-<p>Show month and year dropdowns in place of the static month/year header to facilitate navigation through large timeframes. Add the boolean <code>changeMonth</code> and <code>changeYear</code> options.</p>
-</div>
-</body>
-</html>