I use jquery datetimepicker (from
http://trentrichardson.com/examples/timepicker/)
Seems to work OK, but I use only ISO "style" data inputs.... using
internationalizations is probably only a matter of time spent on the
initialization on timeFormat and dateFormat....
excerpt from web2py_ajax.js ....
try { jQuery("input.datetime").datetimepicker({
timeFormat: 'hh:mm:ss',
dateFormat : 'yy-mm-dd',
showOtherMonths: true,
selectOtherMonths: true
});
} catch(e) {};
try { jQuery("input.date").datepicker({
dateFormat : 'yy-mm-dd',
showOtherMonths: true,
selectOtherMonths: true
});
} catch(e) {};
try { jQuery("input.time").timepicker({
timeFormat: 'hh:mm:ss'
});
} catch(e) {};
.....