vote up 7 vote down star
1

What is the best method for date of birth selector?

  • 3 text inputs (month / day / year) or one mask input. User MUST use keyboard
  • 3 select boxes. User can use keyboard or mouse.
  • One nice datepicker.

I want to know what is the most usable and problem free solution, so user wont be confused at all.

flag

That jQuery date picker seems to work in Firefox, but not in IE7. – Richard E Dec 4 '08 at 9:43
1  
maybe their site have a problem. Datepicker works fine in IE6/7/8, FF, Opera and Safari. Maybe more :) – Ionut Staicu Dec 4 '08 at 10:35

14 Answers

vote up 5 vote down check

For an advanced user text input is the best, if the user knows the date format, it is very fast. For a not so advanced user I suggest using a datepicker. Since usually you also have advanced and non-advanced users I suggest a combination of text input and datepicker.

link|flag
1  
The problem with most datepickers is that it's painfull to go back 30/40/or more years. – Unkwntech Dec 4 '08 at 10:36
Although now that I look at the one he offered I guess its not to bad. – Unkwntech Dec 4 '08 at 10:37
vote up 0 vote down

I would take a DatePicker. It's the only component that allows expert users to enter it manually and guides novices to enter a date very easy.

The calendar should not pop up if you enter via pressing tab, but clicking on a button. So no expert user is annoyed of it.

link|flag
vote up 2 vote down

Put both and make each update the other. If the user chooses the date from the datepicker, it is easy to fix a minor misclick in the text field or visualize the choise you typed into text field in the datepicker.

link|flag
i can't put both, won't fit into design :) I need only one of those. – Ionut Staicu Dec 4 '08 at 9:25
Since the datepicker needs javascript, use javascript to show it only when needed. Set the position to absolute so it will float over all other elements. – some Dec 4 '08 at 10:03
Normally you just put the text field and attach the icon next to it which pops up the datepicker. – Tuminoid Dec 4 '08 at 16:53
vote up 0 vote down

I would prefer a datepicker (and a input box with documented format as a fall-back) for an international site.

Date formats vary and are sometimes hard to read if you are now used to them. Too bad many people aren't comfortable with ISO 8601. :-(

link|flag
vote up 2 vote down

I would also recommend the combination of DatePicker and fields

See this demo, where the date picker does reflect the date entered in the fields by the user.
It is based however on a DatePicker using Prototype and Scriptaculous though. I mention it for illustration purpose.

link|flag
vote up 1 vote down

I normally use both -- a datepicker that populates a textfield in the correct format. Advanced users can edit the textfield directly, mouse-happy users can pick using the datepicker.

If you're worried about space, I usually have just the textfield with a little calendar icon next to it. If you click on the calendar icon it brings up the datepicker as a popup.

Also I find it good practice to pre-populate the textfield with text that indicates the correct format (i.e.: "DD/MM/YYYY"). When the user focuses the textfield that text disappears so they can enter their own.

link|flag
vote up 0 vote down

(Assuming you're using ASP.Net...)

I would recommend a TextBox combined with

  • ASP.Net AJAX Calendar Extender (on the demo try clicking on the Month of the calendar)
  • ASP.Net AJAX Watermark Extender
  • ASP.Net RegularExpressionValidator
  • ASP.Net RequiredFieldValidator

Thus:

<ajax:TextBoxWatermarkExtender ID="txtBirthDate_TextBoxWatermarkExtender" runat="server"
        TargetControlID="txtBirthDate" WatermarkCssClass="watermark" WatermarkText="DD/MM/YYYY" />
<ajax:CalendarExtender ID="txtBirthDate_CalendarExtender" runat="server" TargetControlID="txtBirthDate"
        FirstDayOfWeek="Monday" Format="dd/MM/yyyy" />
<asp:RequiredFieldValidator ID="txtBirthDate_RequiredFieldValidator" runat="server"
        ErrorMessage="Please select a date" ControlToValidate="txtBirthDate" CssClass="validator"
        Display="Dynamic" EnableClientScript="true" ValidationGroup="YourValGroup"></asp:RequiredFieldValidator>
<asp:RegularExpressionValidator ID="txtBirthDate_RegularExpressionValidator" runat="server"
        ErrorMessage="The date must be entered in the format DD/MM/YYYY" ControlToValidate="txtBirthDate"
        CssClass="validator" Display="Dynamic" EnableClientScript="true" ValidationGroup="YourValGroup"
        ValidationExpression="(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)\d\d"></asp:RegularExpressionValidator>

This might look a bit overloaded in your aspx file, but it makes for a nice simple user experience, that degrades gracefully (still works) if JavaScript is disabled.

You'd probably want to add a RangeValidator to prevent the user from selecting dates in the future as well.

link|flag
How about a comment to accompany the vote down? – Richard E Dec 4 '08 at 9:47
i'm not the one who down vote, but i don't use asp (i didn't mention though). In fact, it's a general question, not specific to a language or another ;) – Ionut Staicu Dec 4 '08 at 10:02
No worries - there are certainly plenty of other datepickers out there (we've found quality issues with a lot that we've looked at though) and I'm pretty sure there's a jQuery watermarker out there as well. – Richard E Dec 4 '08 at 10:08
vote up 0 vote down

I would suggest using a drop down menu for each field, making sure to label each as day, month and year. A date picker might also help, but if the user doesn't have JavaScript enabled, it won't work.

link|flag
Because is a site full of javascript, there is no chance for ANYTHING to work without JS. So this kind of concerns is useless now :) – Ionut Staicu Dec 4 '08 at 10:04
What if a visually impaired user wants to use your website? – Toytown Mafia Dec 4 '08 at 10:23
1  
If you use names of months and four-digit years, it will be self-labelling, as there won't be any overlap between the sets of values. – Dave Sherohman Dec 4 '08 at 14:35
Downvoted: drop-downs are VERY annoying for users, especially for this kind of data. See Nielsen: useit.com/alertbox/20001112.html – Mauricio Scheffer Dec 7 '08 at 4:17
vote up 0 vote down

Why don't you test all three and pick the one that the performs the best? This seems like a good candidate for Google Website Optimizer to test.

It may be that the type of users you have, or the type of site you are running may dictate that your solution should be different than the "norm".

link|flag
vote up 1 vote down

I had tried datePicker with my user but it turn out to be a bad UI to them. What I end up base on their request is to have 3 textbox where they can quickly type [ day ] [ month ] [ year ] :(

link|flag
vote up 16 vote down

If your goal is to make sure "the user won't be confused at all," I think this is the best option.

three dropdowns for month, day, year

I wouldn't recommend a datepicker for date of birth. First you have to browse to the year (click, click, click…), then to the month (click some more), and then find and click the tiny number on a grid.

Datepickers are useful when you don't know the exact date off the top of your head, e.g. you're planning a trip for the second week of February.

link|flag
1  
Upvoted: This is exactly the answer I was going to give. Datepicker is good for 'I know it's a Friday' kind of situations, but for date of birth it adds no value. – slim Dec 4 '08 at 14:34
2  
Downvoted: drop-downs are VERY annoying for users, especially for this kind of data. See Nielsen: useit.com/alertbox/20001112.html – Mauricio Scheffer Dec 7 '08 at 4:13
Plus, with jQuery datepicker it's very easy to have a text input + optional datepicker (docs.jquery.com/UI/Datepicker) – Mauricio Scheffer Dec 7 '08 at 4:17
@mausch That's why I prefaced my answer with "If your goal is to make sure 'the user won't be confused at all'" FTA: "Drop-down menus do have their advantages... because they are a standard widget (even if an unpleasant one), users know how to deal with a drop-down menu when they encounter it." – Patrick McElhaney Dec 8 '08 at 13:37
2  
So, were you born on October 9 or September 10? I don't how to resolve that ambiguity with a simple text box. – Patrick McElhaney Dec 15 '08 at 14:00
show 4 more comments
vote up 0 vote down

As perhaps one of the older people here, and born late in the month, I find drop-down menus for birthdates to be frustrating. I typically have to scroll down on two drop-down menus, and that's awkward. I'd much rather type it in.

If you can have a control designed so that it can either accept drop-down menus or be typed into, and make it clear both work, that would be excellent.

link|flag
vote up 0 vote down

Who don't you use the jQuery UI DatePicker?

It's configurable to suit pretty much any needs. The only downside is if you're including it with jQuery UI it has a somewhat large footprint..

- CSS theme - 28kb
- jQuery UI - 45kb minified
- DatePicker - 68kb
- Plus a couple of images (next month/previous month)

But that's not too bad...

link|flag
Don't worry, you can chop css pretty much. I wanted only to know what's the best method ;) – Ionut Staicu Jun 16 at 14:37
vote up 0 vote down

Whether to use a datepicker or not I think depends on how long ago the dates are. If they are typically in the current month, and almost never more than a few months old, and you know that Javascript will be around, a datepicker is good. If the dates are not recent (say, a birthdate) I think this is the best option:

Note that this is different from Patrick McElhaney's answer in that the year is a text box, not a dropdown. Selecting a number from a drop down box that is hundreds of elements long is very annoying for the user.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.