Hi,
I have the following code at the beginning of the page:
<script type="text/javascript"> jQuery.global.preferCulture('fi-FI'); </script>
and the following jqxDateTimeInput declaration:
$('mydate').jqxDateTimeInput({ culture: 'fi-FI', formatString: 'd.M.yyyy H:mm', width: '250px', height: '25px', value: new $.jqx._jqxDateTimeInput.getDateTime(new Date('2013/01/16 17:15:00')), theme: 'classic' });
after that my jQuery.global.culture is reset to default ‘en-US’.
After ny own investigation I found out that jqxDateTimeInput contains jqxCalendar and calendar calls:
jQuery.global.preferCulture(this.culture);
And since calendar culture is not set the culture is reset to default.
How can I set culture of calendar that is inside jqxDateTimeInput?
Thanks, Alex.