We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi, i'm trying to change the localization of the datepicker with out any success. cane some one please help me?
//eferdi
The text was updated successfully, but these errors were encountered:
It's a jquery ui date field. Try following code here http://jqueryui.com/datepicker/#localization
Sorry, something went wrong.
For czech location is this code:
$.datepicker.regional['cs'] = { closeText: 'Cerrar', prevText: 'Předchozí', nextText: 'Další', currentText: 'Hoy', monthNames: ['Leden','Únor','Březen','Duben','Květen','Červen', 'Červenec','Srpen','Září','Říjen','Listopad','Prosinec'], monthNamesShort: ['Le','Ún','Bř','Du','Kv','Čn', 'Čc','Sr','Zá','Ří','Li','Pr'], dayNames: ['Neděle','Pondělí','Úterý','Středa','Čtvrtek','Pátek','Sobota'], dayNamesShort: ['Ne','Po','Út','St','Čt','Pá','So',], dayNamesMin: ['Ne','Po','Út','St','Čt','Pá','So'], weekHeader: 'Sm', dateFormat: 'dd.mm.yy', firstDay: 1, isRTL: false, showMonthAfterYear: false, yearSuffix: ''};
$.datepicker.setDefaults($.datepicker.regional['cs']);
$("#datepicker").datepicker();
Paste it at the end of idealform script on the page after
var $myform = $('#my-form').idealforms(options).data('idealforms');
$('#reset').click(function(){ $myform.reset().fresh().focusFirst() }); $myform.focusFirst();
and of course you have to adjust it
No branches or pull requests
hi, i'm trying to change the localization of the datepicker with out any success.
cane some one please help me?
//eferdi
The text was updated successfully, but these errors were encountered: