2012-09-10 15:33:46 +00:00
<!doctype html>
2008-12-30 04:16:51 +00:00
< html lang = "en" >
< head >
2010-09-10 12:50:53 +00:00
< meta charset = "utf-8" >
2014-06-03 21:18:51 +00:00
< title > jQuery UI Calendar - Localize calendar< / title >
2013-12-02 18:36:12 +00:00
< link rel = "stylesheet" href = "../../themes/base/all.css" >
2015-08-20 13:48:11 +00:00
< link rel = "stylesheet" href = "../../themes/base/all.css" >
2010-09-10 12:50:53 +00:00
< link rel = "stylesheet" href = "../demos.css" >
2015-08-20 13:48:11 +00:00
< script src = "../../external/requirejs/require.js" > < / script >
< script src = "../bootstrap.js" data-modules = "external/localization" >
2014-06-18 00:05:42 +00:00
var calendar = $( "#calendar" ),
select = $( "#locale" );
2014-06-03 21:18:51 +00:00
2015-04-30 11:28:04 +00:00
calendar.calendar({
locale: select.val()
});
2014-06-18 00:05:42 +00:00
select.change( function() {
2015-04-30 11:28:04 +00:00
calendar.calendar( "option", {
locale: select.val()
});
2014-06-18 00:05:42 +00:00
calendar.calendar( "valueAsDate", calendar.calendar( "valueAsDate" ) );
2008-12-30 18:23:21 +00:00
});
2008-12-30 04:16:51 +00:00
< / script >
< / head >
< body >
2014-06-03 21:18:51 +00:00
< div id = "calendar" > < / div >
< select id = "locale" >
2015-04-30 11:28:04 +00:00
< option value = "ar" > Arabic< / option >
< option value = "de" selected > German< / option >
2014-06-03 21:18:51 +00:00
< option value = "en" > English< / option >
2015-04-30 11:28:04 +00:00
< option value = "es" > Spanish< / option >
< option value = "zh" > Chinese Simplified< / option >
2014-06-03 21:18:51 +00:00
< / select >
2008-12-30 04:16:51 +00:00
2010-09-10 12:50:53 +00:00
< div class = "demo-description" >
2015-01-18 18:26:19 +00:00
< p > Localize the calendar language and format (English / Western formatting is the default). The calendar includes built-in support for languages that read right-to-left, such as Arabic and Hebrew.< / p >
2012-09-10 15:33:46 +00:00
< / div >
2008-12-30 04:16:51 +00:00
< / body >
< / html >