Pickers are designed to help simplify and standardize the interface for certain types of user input. Mojo includes pickers for entering dates, times, numbers, and selecting files. The first three are "conventional" widgets, while the file picker is actually an application "wrapped with a framework interface".
Date picker
x-mojo-element="DatePicker"
Allows selection of month, day, and year values.
The model for the date picker widget includes a single property, named date by default, which should be assigned a JavaScript Date object. You can then use the standard JavaScript functions Get Month(), Get Date() or Get Year() to extract the input value.
Time Picker
x-mojo-element="TimePicker"
Similar to the date picker, but includes an optional attributes property minuteInterval, which confines the allowable minute values to the increment specified (e.g. 5 minutes).
12 or 24 hour format is automatically displayed based on the user's device preferences or locale. The JavaScript functions GetHours(), GetMinutes() and GetSeconds() can be used to extract information from the time picker's model object.
At time of writing, Palm has not yet provided an example of the attributes for the date or time picker widgets.