Am I the only person who likes to be able to type in a flexible date format and have it autocorrect that to a known date? (I set this up for an internal work tool using http://www.datejs.com/ and it worked great.) I type faster than I use the mouse. But everyone wants me to use a mouse. :-(
I do, but I also like the option of a good date picker. Ideally a text input with a calender icon next to it, instead of a calendar that automatically shows on focus.
So hard to have a date: js calendars review. New jquery calendar-picker
11–20 of 20 posts
Re: So hard to have a date: js calendars review. New jquery calendar-picker
#12Re: So hard to have a date: js calendars review. New jquery calendar-picker
#13Am I the only person who likes to be able to type in a flexible date format and have it autocorrect that to a known date? (I set this up for an internal work tool using http://www.datejs.com/ and it worked great.) I type faster than I use the mouse. But everyone wants me to use a mouse. :-(
The problem with all the date pickers that take text input is that they can't differentiate between 03-05-2010 being in March or May. I worked on some software for a company doing federal compliance consulting for employee hiring processes and requirements. We found that most people don't read (MM-DD-YYYY) type notifiers most of the time and immigrants were most likely to write dates as DD-MM-YYYY where as those born…
Re: So hard to have a date: js calendars review. New jquery calendar-picker
#1413 jquery calendars reviewed +1 new cool component
I'm curious!
Re: So hard to have a date: js calendars review. New jquery calendar-picker
#15Am I the only person who likes to be able to type in a flexible date format and have it autocorrect that to a known date? (I set this up for an internal work tool using http://www.datejs.com/ and it worked great.) I type faster than I use the mouse. But everyone wants me to use a mouse. :-(
Re: So hard to have a date: js calendars review. New jquery calendar-picker
#16Am I the only person who likes to be able to type in a flexible date format and have it autocorrect that to a known date? (I set this up for an internal work tool using http://www.datejs.com/ and it worked great.) I type faster than I use the mouse. But everyone wants me to use a mouse. :-(
I type rather fast as well, but I find dates awkward in ways that a picker solves. First, the mechanics of typing dates requires slashes. But also, it requires knowledge, like "what the hell is today" so I can then work out "what is the date of next saturday". Date pickers do all that work for you. Fuzzy text is fun, and can solve some of those problems as well, but is less intuitive (what is accepted, what isn't).
That struck me as a reasonable compromise.
Re: So hard to have a date: js calendars review. New jquery calendar-picker
#17Am I the only person who likes to be able to type in a flexible date format and have it autocorrect that to a known date? (I set this up for an internal work tool using http://www.datejs.com/ and it worked great.) I type faster than I use the mouse. But everyone wants me to use a mouse. :-(
The problem with all the date pickers that take text input is that they can't differentiate between 03-05-2010 being in March or May. I worked on some software for a company doing federal compliance consulting for employee hiring processes and requirements. We found that most people don't read (MM-DD-YYYY) type notifiers most of the time and immigrants were most likely to write dates as DD-MM-YYYY where as those born…
Re: So hard to have a date: js calendars review. New jquery calendar-picker
#18Earlier quoted context omitted.
The problem with all the date pickers that take text input is that they can't differentiate between 03-05-2010 being in March or May. I worked on some software for a company doing federal compliance consulting for employee hiring processes and requirements. We found that most people don't read (MM-DD-YYYY) type notifiers most of the time and immigrants were most likely to write dates as DD-MM-YYYY where as those born…
A possible fix for ambiguous dates: When you detect an ambiguous date, prompt the user for the one they intended before allowing them to continue filling out the form.
Re: So hard to have a date: js calendars review. New jquery calendar-picker
#19Earlier quoted context omitted.
The problem with all the date pickers that take text input is that they can't differentiate between 03-05-2010 being in March or May. I worked on some software for a company doing federal compliance consulting for employee hiring processes and requirements. We found that most people don't read (MM-DD-YYYY) type notifiers most of the time and immigrants were most likely to write dates as DD-MM-YYYY where as those born…
Did you test about asking the people to enter the date as ISO yyyy-mm-dd ? I'm not raised in the US and am usually confused of the meaning of some dates, however stating the year first makes it always understandable.
Re: So hard to have a date: js calendars review. New jquery calendar-picker
#20Earlier quoted context omitted.
The problem with all the date pickers that take text input is that they can't differentiate between 03-05-2010 being in March or May. I worked on some software for a company doing federal compliance consulting for employee hiring processes and requirements. We found that most people don't read (MM-DD-YYYY) type notifiers most of the time and immigrants were most likely to write dates as DD-MM-YYYY where as those born…
If the final date you will get is displayed to the user, then the user has the opportunity to fix those errors.