[Microba-controls] Problem with Displaying DatePicker
Brought to you by:
michaelbaranov
From: DigiTalk <not...@wi...> - 2006-05-15 08:34:13
|
Hello again! As your help really was great last time, I ask you something again. I added the Control to a GridBagLayout. The DatePicker was created using createDatePicker() in my abstract class: protected DatePicker createDatePicker(){ log.info("Begin: Window.createDatePicker()"); DatePicker dp = new DatePicker(); dp.setFieldEditable(false); dp.setLocale(Locale.GERMANY); dp.setDateStyle(DateFormat.SHORT); dp.setPreferredSize(datepickersize); dp.setMaximumSize(datepickersize); dp.setMinimumSize(datepickersize); dp.setShowNoneButton(false); log.info("End: Window.createDatePicker()"); return dp; } But now my checkbox is above the DatePicker... See attached gif to see how this looks (it's a german program). I would appreciate any ideas which may lead to a conclusion. Thank you in advance! Greetings, DigiTalk |