mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
510ba08cff
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.
23 lines
727 B
HTML
23 lines
727 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>jQuery UI Calendar Demos</title>
|
|
</head>
|
|
<body>
|
|
|
|
<ul>
|
|
<li><a href="default.html">Default functionality</a></li>
|
|
<li><a href="buttonbar.html">Display button bar</a></li>
|
|
<li><a href="dropdown-month-year.html">Display month & year menus</a></li>
|
|
<li><a href="localization.html">Localize calendar</a></li>
|
|
<li><a href="min-max.html">Restrict date range</a></li>
|
|
<li><a href="multiple-months.html">Display multiple months</a></li>
|
|
<li><a href="other-months.html">Dates in other months</a></li>
|
|
<li><a href="show-week.html">Show week of the year</a></li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|