DateChooser
Allows to select a date in a user friendly way, by showing a calendar.
It can be embedded in a window, or inserted directly on any container.
Example of use:
var chooser = new qx.ui.component.DateChooser; chooser.auto(); // This is important chooser.addToDocument();
How to internationalize
Here is a sample code to translate the week and month names into Spanish:
var df = qx.util.format.DateFormat; df.FULL_MONTH_NAMES = [ "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre" ]; df.SHORT_DAY_OF_WEEK_NAMES = [ 'D', 'L', 'M', 'X', 'J', 'V', 'S' ];
