datechooser component - first try
Hello,
This is date calendar component for RCP application.
Classes :
http://www.snpe.co.yu/JCalendarExt.java
JCalendarExt is JCalendar with 2 added buttons : today and clear
http://www.snpe.co.yu/JTextFieldDateChooser.java
It is like TextFieldDateChooser from toedter's general forum (thread 'null date')
You have to add toedter's jcalendar libary
Using :
standard property editor like :
http://www.snpe.co.yu/DefaultDateEditor.java
you have to add registry for editor in spring's xml
when you bind component to JTextField you create datechooser with:
JtextFieldDateChooser datechooser = new JTextFieldDateChooser(components[1])
and add datechooser in form except JTextField component
RCP binding and validation work with JTextField components and we have :
null value
invalid value (I need this for search; for example, If i have date format
dd.MM.yyyy and value __.03.____ in text components system search for all
dates in Mart)
screenshoots : http://www.snpe.co.yu/datechooser_search.png (no validation in search mode)
http://www.snpe.co.yu/datechooser_insert.png (invalid value)
regards