Anders wrote:
I've been working on improving Sam Collet's original timePicker.
Here is the result: http://labs.perifer.se/timedatepicker/
The demo is a Google Calendar-like time/datePicker. It's far from
perfect, most of the issues are with the datePicker though, which for
example not yet have support for focus/blur. Kelvin? ;)
/Anders
Hi,
Sorry for the slow response. I don't feel that the date picker should
have support for focus/ blur unless (until?) it has full keyboard
support. If I tab into a text field and a date picker I can't interact
with pops up and I can't use a mouse then how do I enter a date?
If you want this functionality you can easily add it by adding the
following code to your page:
$('input.date').bind(
'focus',
function()
{
$(this).dpDisplay();
});
(untested but should work).
Hope that helps,
Kelvin :)