I am trying to localize the datePicker widget to show the date in Italian format and get the text shown on the popup in Italian as well. here is what I load in the <head> section:<script src="/os/jquery/jquery-1.6.4.min.js" type="text/javascript"></script> <!-- tried also jquery 1.6.2, but 1.6.4 fixes an issue with modal popup window --> <link rel="stylesheet" href="/os/kendo/styles/kendo.common.min.css" type="text/css" /> <link rel="stylesheet" href="/os/kendo/styles/kendo.kendo.min.css" type="text/css" /> <script src="/os/kendo/js/kendo.all.min.js" type="text/javascript"></script> <script src="/os/kendo/js/cultures/kendo.culture.it-IT.js" type="text/javascript"></script><input id="dataInizio" name="dataInizio" value="31/10/2011" size="12" maxlength="10" /> <script type="text/javascript"> $(document).ready(function(){$("#dataInizio").kendoDatePicker();}); $("#dataInizio").kendoDatePicker({format: "dd/MM/yyyy"}); </script> Actually, when the page loads you can see the date - properly formatted - for a while, then it disappear, showing the field empty. I am probably doing something wrong can you please give an example about how localize in different 'cultures'? Thanks!