views:

18

answers:

2

How can I ask my user to input a date in my Blackberry application?

What controls does the RIM offer me to show my users something familiar and easy to implement?

A: 

If you're working on a Blackberry Web content, you might want to use HTML5 for getting dates,

<div>
<b>Date Input:</b> <br/>
Dates between 2010 - 2018: <input type="date" id="txtDate"  min="2010-01-01" max="2018-12-31" value=""/>
</div>
Joset
why was this down voted?
Joset
+1  A: 

Take a look at the DateField control. Also - new to the 5.0 API is a DateTimePicker control which is an improved version of the control.

Marc Novakowski