-
The Hungarian locale version have been changed the "today" and "empty" text. Today is "ma", and empty is "semmi" in hungarian language. Can I help you to fixed this bug?.
2009-04-12 15:27:50 UTC by ggy011
-
version: 0.4.4.3
On OS X the DatePicker button (to show the dialog) sometimes is square and sometimes oval (looking odd and misplaced). Sorry, but I don't understand the pattern.
I add a screenshot of my app.
2008-09-10 14:31:01 UTC by mbeyer73
-
used version: 0.4.4.3
DatePicker Colors are Black on Dark Blue which is nearly unreadable.
workaround:
Map colorOverrideMap = new HashMap ( );
colorOverrideMap.put (CalendarColors.COLOR_CALENDAR_HEADER_BACKGROUND_ENABLED, new Color(127, 210, 248));
colorOverrideMap.put (CalendarColors.COLOR_CALENDAR_HEADER_FOREGROUND_ENABLED, Color.BLACK);.
2008-09-10 14:00:58 UTC by mbeyer73
-
I have a solution for that problem
Override the BasicDatePickerUI
public class MyDatePickerUI extends BasicDatePickerUI {
public static ComponentUI createUI(final JComponent c) {
return new MyDatePickerUI();
}
/** {@inheritDoc} */
@Override
protected void installComponents() {
super.installComponents();
field.setFormatterFactory(new...
2008-08-19 12:49:10 UTC by nobody
-
To reproduce:
1. create a form that contains DatePicker component
2. click the calendar button and select any date
3. in the textfield, erase the date
4. call commitEdit(); it returns false; does not set the internal Date variable to null
5. call getDate(); it returns the last valid date selected in the calendar component rather than null.
2008-04-24 13:17:07 UTC by nobody
-
Please provide more details: java version, browser. Can you please post a standalone short applet example for me to reproduce it? Also your stack trace... something is wrong with it... there's no MicrobaComponent.updatedUI() but there is MicrobaComponent.updateUI()...
2008-03-11 18:35:46 UTC by michaelbaranov
-
Have you tried color overrding? Does this solve your problem?.
2008-03-11 18:32:07 UTC by michaelbaranov
-
The currently selected date and the header both have the wrong foreground color. It should be the system color for foreground selection.
2008-02-15 07:39:13 UTC by nobody
-
I'm currently using the color override feature to change the color of the calendar header. However, when this is done, the header and the numberOfWeek panel colors do not match. I would like to request a feature that allows the color of the numberOfWeek panel to be overridden as well.
2007-12-10 15:58:31 UTC by nobody
-
Hi,
There is a problem with DatePicker when used in an applet.
Eerything works fine the first time, but if the page is refreshed, I have:
java.lang.NullPointerException
at java.util.Hashtable.remove
at javax.swing.UIDefaults.put
at com.michaelbaranov.microba.common.MicrobaComponent.updatedUI(MicrobaComponent.java:41)
at...
2007-09-24 17:09:30 UTC by nobody