Hi all!
I have a problem about DateField.
It doesn’t work as I want.
This is my code.
PopupDateField dateField = new PopupDateField();
dateField.setValue(new java.util.Date());
dateField.setResolution(PopupDateField.RESOLUTION_MONTH);
dateField.addListener((com.vaadin.data.Property.ValueChangeListener) this);
dateField.setImmediate(true);
The month does not match which I choose.
Below screenshot!
I choose Oct. 2010 but it doesn’t fire ValueChangeEvent When I click the next month button.
So I can’t get the changed value.
but 6.2.3 Version work fine.
I’m a Netbeans user. so I tried it on Eclipse. but it was the same.
What’s wrong with me or something? Please, help me.