Mercurial > hg > ismi-richfaces
view src/main/webapp/imageServer/resources/js/jquery-ui-1.10.4/demos/datepicker/localization.html @ 205:f719d73383db
Merge iiif_diva branch
964846688a95cc9b0af5ade832b8d34ae4a4bc21
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Mon, 08 Jul 2019 17:55:14 +0200 |
parents | 764f47286679 |
children |
line wrap: on
line source
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Datepicker - Localize calendar</title> <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css"> <script src="../../jquery-1.10.2.js"></script> <script src="../../ui/jquery.ui.core.js"></script> <script src="../../ui/jquery.ui.widget.js"></script> <script src="../../ui/jquery.ui.datepicker.js"></script> <script src="jquery.ui.datepicker-ar.js"></script> <script src="jquery.ui.datepicker-fr.js"></script> <script src="jquery.ui.datepicker-he.js"></script> <script src="jquery.ui.datepicker-zh-TW.js"></script> <link rel="stylesheet" href="../demos.css"> <script> $(function() { $( "#datepicker" ).datepicker( $.datepicker.regional[ "fr" ] ); $( "#locale" ).change(function() { $( "#datepicker" ).datepicker( "option", $.datepicker.regional[ $( this ).val() ] ); }); }); </script> </head> <body> <p>Date: <input type="text" id="datepicker"/> <select id="locale"> <option value="ar">Arabic (‫(العربية</option> <option value="zh-TW">Chinese Traditional (繁體中文)</option> <option value="">English</option> <option value="fr" selected="selected">French (Français)</option> <option value="he">Hebrew (‫(עברית</option> </select></p> <div class="demo-description"> <p>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.</p> </div> </body> </html>