What is best way to allow user to pick date from a mobile device from usability prospective?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’d detest any form of drop-down, select-list when using a mobile app.
Unfortunately, three separate boxes (for day, month and year) would be equally painful on a MIDP-profile device.
I’d almost suggest using one text box, and do a
DateTime.TryParse(String, out DateTime)to get the result. That allows them to type in any number of formats.. and the bulk of the time it’ll work okay.Also, if you gave them a hint on the form as to the correct formatting (e.g. 12 Mar 2009) then it’d probably be the format they use.