I have created a datefield like this:

var doc = this.getRoot();
var dateField1 = new qx.ui.form.DateField();
doc.add(dateField1);
dateField1.setValue(new Date());
var dfPopup = dateField1.getChildControl("list");

dfPopup.addListener("click", function()
{
    var format = new qx.util.format.DateFormat("YYYYMMdd");
    var cible1 = format.format(dateField1.getValue());
    alert(cible1);
});
Playground: http://tinyurl.com/m3bgny6

That listen each time an user click once on a date in the datechooser.
Works perfectly well for date during the month.
We're the 27th of may.
But if I click on a June date which appear on the May calendar, I get
nothing.

Is this the normal behaviour for this widget?
If yes, is it possible to not show the June date in the May calendar.

mario_qooxdoo




--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Datefield-problem-tp7585742.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
The best possible search technologies are now affordable for all companies.
Download your FREE open source Enterprise Search Engine today!
Our experts will assist you in its installation for $59/mo, no commitment.
Test it for FREE on our Cloud platform anytime!
http://pubads.g.doubleclick.net/gampad/clk?id=145328191&iu=/4140/ostg.clktrk
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to